-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathPutGetTest.h
More file actions
36 lines (26 loc) · 875 Bytes
/
PutGetTest.h
File metadata and controls
36 lines (26 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "gtest/gtest.h"
#include <memory>
namespace infinispan {
namespace hotrod
{
class RemoteCacheManager;
}
}
// The fixture for testing class Foo.
class PutGetTest : public ::testing::Test {
public:
static std::unique_ptr<infinispan::hotrod::RemoteCacheManager> remoteCacheManager;
protected:
// You can do set-up work for each test here.
PutGetTest();
// You can do clean-up work that doesn't throw exceptions here.
virtual ~PutGetTest() {} ;
// If the constructor and destructor are not enough for setting up
// and cleaning up each test, you can define the following methods:
// Code here will be called immediately after the constructor (right
// before each test).
virtual void SetUp();
// Code here will be called immediately after each test (right
// before the destructor).
virtual void TearDown();
};