-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathTranscoderTest.h
More file actions
34 lines (25 loc) · 848 Bytes
/
TranscoderTest.h
File metadata and controls
34 lines (25 loc) · 848 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
#include "gtest/gtest.h"
#include <memory>
namespace infinispan {
namespace hotrod
{
class RemoteCacheManager;
}
}
class TranscoderTest : public ::testing::Test {
public:
static std::unique_ptr<infinispan::hotrod::RemoteCacheManager> remoteCacheManager;
protected:
// You can do set-up work for each test here.
TranscoderTest();
// You can do clean-up work that doesn't throw exceptions here.
virtual ~TranscoderTest() {} ;
// 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();
};