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