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