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