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 
13 using namespace mcld;
14 using namespace mcldtest;
15 
16 // Constructor can do set-up work for all test here.
LDSymbolTest()17 LDSymbolTest::LDSymbolTest() {
18 }
19 
20 // Destructor can do clean-up work that doesn't throw exceptions here.
~LDSymbolTest()21 LDSymbolTest::~LDSymbolTest() {
22 }
23 
24 // SetUp() will be called immediately before each test.
SetUp()25 void LDSymbolTest::SetUp() {
26 }
27 
28 // TearDown() will be called immediately after each test.
TearDown()29 void LDSymbolTest::TearDown() {
30 }
31 
32 //==========================================================================//
33 // Testcases
34 //
TEST_F(LDSymbolTest,produce)35 TEST_F(LDSymbolTest, produce) {
36 }
37