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