blob: f20fd621fe1d46162b5caf58f13dda0bfa8d596b [file] [log] [blame]
Shih-wei Liao22add6f2012-12-15 17:21:00 -08001//===- LinkerTest.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 MCLD_LINKER_TEST_H
10#define MCLD_LINKER_TEST_H
11
12#include <gtest.h>
13
14namespace mcld {
15
16class Linker;
17
18namespace test {
19
Stephen Hines37b74a32014-11-26 18:48:20 -080020class LinkerTest : public ::testing::Test {
21 public:
Shih-wei Liao22add6f2012-12-15 17:21:00 -080022 // Constructor can do set-up work for all test here.
23 LinkerTest();
24
25 // Destructor can do clean-up work that doesn't throw exceptions here.
26 virtual ~LinkerTest();
27
28 // SetUp() will be called immediately before each test.
29 virtual void SetUp();
30
31 // TearDown() will be called immediately after each test.
32 virtual void TearDown();
33};
34
Stephen Hines37b74a32014-11-26 18:48:20 -080035} // namespace of test
36} // namespace for mcld
Shih-wei Liao22add6f2012-12-15 17:21:00 -080037
38#endif