Kun Yi | 91beea6 | 2018-11-26 15:23:14 -0800 | [diff] [blame^] | 1 | #pragma once |
2 | |||||
3 | #include "handler.hpp" | ||||
4 | |||||
5 | #include <gtest/gtest.h> | ||||
6 | |||||
7 | namespace blobs | ||||
8 | { | ||||
9 | |||||
10 | class BinaryStoreBlobHandlerTest : public ::testing::Test | ||||
11 | { | ||||
12 | protected: | ||||
13 | BinaryStoreBlobHandlerTest() = default; | ||||
14 | |||||
15 | BinaryStoreBlobHandler bstore; | ||||
16 | }; | ||||
17 | |||||
18 | class BinaryStoreBlobHandlerBasicTest : public BinaryStoreBlobHandlerTest | ||||
19 | { | ||||
20 | }; | ||||
21 | |||||
22 | } // namespace blobs |