• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
17 // Constructor can do set-up work for all test here.
LDSymbolTest()18 LDSymbolTest::LDSymbolTest()
19 {
20 }
21 
22 // Destructor can do clean-up work that doesn't throw exceptions here.
~LDSymbolTest()23 LDSymbolTest::~LDSymbolTest()
24 {
25 }
26 
27 // SetUp() will be called immediately before each test.
SetUp()28 void LDSymbolTest::SetUp()
29 {
30 }
31 
32 // TearDown() will be called immediately after each test.
TearDown()33 void LDSymbolTest::TearDown()
34 {
35 }
36 
37 //==========================================================================//
38 // Testcases
39 //
TEST_F(LDSymbolTest,produce)40 TEST_F( LDSymbolTest, produce ) {
41 }
42 
43