diff options
Diffstat (limited to 'src/bp_gtest.h')
-rw-r--r-- | src/bp_gtest.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/bp_gtest.h b/src/bp_gtest.h index 0bc66eac..955b781e 100644 --- a/src/bp_gtest.h +++ b/src/bp_gtest.h @@ -19,6 +19,16 @@ limitations under the License. #define EXPECT_EQ_UINT32(a,b) EXPECT_EQ((uint32_t)(a),(uint32_t)(b)) +class trexTest : public testing::Test { + protected: + virtual void SetUp() { + CGlobalInfo::m_options.reset(); + } + virtual void TearDown() { + } +public: +}; + class CTestBasic { public: |