LDSymbolTest.cpp revision 5460a1f25d9ddecb5c70667267d66d51af177a99
1//===- LDSymbolTest.cpp ---------------------------------------------------===//
2//
3//                     The MCLinker Project
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "mcld/LD/LDSymbol.h"
11#include "LDSymbolTest.h"
12
13using namespace mcld;
14using namespace mcldtest;
15
16
17// Constructor can do set-up work for all test here.
18LDSymbolTest::LDSymbolTest()
19{
20}
21
22// Destructor can do clean-up work that doesn't throw exceptions here.
23LDSymbolTest::~LDSymbolTest()
24{
25}
26
27// SetUp() will be called immediately before each test.
28void LDSymbolTest::SetUp()
29{
30}
31
32// TearDown() will be called immediately after each test.
33void LDSymbolTest::TearDown()
34{
35}
36
37//==========================================================================//
38// Testcases
39//
40TEST_F( LDSymbolTest, produce ) {
41}
42
43