13 lines
224 B
C++
13 lines
224 B
C++
|
#include <google/gtest/gtest.h>
|
||
|
|
||
|
#include "../../../../implementations/caching/cache/Cache.h"
|
||
|
|
||
|
using ::testing::Test;
|
||
|
|
||
|
using namespace blockstore::caching;
|
||
|
|
||
|
class CacheTest: public Test {
|
||
|
public:
|
||
|
Cache<int, int> cache;
|
||
|
};
|