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