Home | History | Annotate | Download | only in unittests
      1 //===- ELFBinaryReaderTest.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_ELFBINARYREADER_TEST_H
     10 #define MCLD_ELFBINARYREADER_TEST_H
     11 
     12 #include <gtest.h>
     13 
     14 namespace mcld {
     15 class ELFBinaryReader;
     16 
     17 namespace test {
     18 
     19 class ELFBinaryReaderTest : public ::testing::Test
     20 {
     21 public:
     22   // Constructor can do set-up work for all test here.
     23   ELFBinaryReaderTest();
     24 
     25   // Destructor can do clean-up work that doesn't throw exceptions here.
     26   virtual ~ELFBinaryReaderTest();
     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 
     35 } // namespace of test
     36 } // namespace of mcld
     37 
     38 #endif
     39 
     40