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