1 //===- SymbolTableTest.h --------------------------------------------------===//
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 #ifndef LD_SYMBOLTABLE_TEST_H
10 #define LD_SYMBOLTABLE_TEST_H
11 #include "mcld/LD/StringTable.h"
12 #include <gtest.h>
13 
14 namespace mcld {
15 template <template <class> class, class>
16 class SymbolTable;
17 }  // namespace for mcld
18 
19 namespace mcldtest {
20 
21 /** \class SymbolTableTest
22  *  \brief
23  *
24  *  \see SymbolTable
25  */
26 class SymbolTableTest : public ::testing::Test {
27  public:
28   // Constructor can do set-up work for all test here.
29   SymbolTableTest();
30 
31   // Destructor can do clean-up work that doesn't throw exceptions here.
32   virtual ~SymbolTableTest();
33 
34   // SetUp() will be called immediately before each test.
35   virtual void SetUp();
36 
37   // TearDown() will be called immediately after each test.
38   virtual void TearDown();
39 
40  protected:
41   mcld::SymbolTable<>* m_pTestee;
42   mcld::StringTable m_StrTable;
43 };
44 
45 }  // namespace of mcldtest
46 
47 #endif
48