libcryfs/test/implementations/onblocks/testutils/BlobStoreTest.h

13 lines
259 B
C
Raw Normal View History

2015-03-05 22:23:30 +01:00
#include <google/gtest/gtest.h>
#include "../../../../interface/BlobStore.h"
class BlobStoreTest: public ::testing::Test {
public:
BlobStoreTest();
static constexpr uint32_t BLOCKSIZE_BYTES = 256;
std::unique_ptr<blobstore::BlobStore> blobStore;
};