Lightmetrica  0.0.1.50dbee3 (yosakoi)
 All Classes Functions Variables Typedefs Enumerations Enumerator
base.h
1 #ifndef __RF_TEST_BASE_H__
2 #define __RF_TEST_BASE_H__
3 
4 #include "common.h"
5 #include <gtest/gtest.h>
6 
7 RF_TEST_NAMESPACE_BEGIN
8 
9 class TestBase : public ::testing::Test
10 {
11 public:
12 
13  // Default timeout in milliseconds
14  static const long long OutputProcessTimeout;
15 
16 protected:
17 
18  virtual void SetUp();
19  virtual void TearDown();
20 
21 };
22 
23 RF_TEST_NAMESPACE_END
24 
25 #endif // __RF_TEST_BASE_H__
Definition: base.h:9