| Nan Zhou | 042b5ba | 2021-06-18 09:32:45 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: Apache-2.0 |
| 2 | // Copyright (C) 2021 GOOGLE | ||||
| 3 | |||||
| 4 | #pragma once | ||||
| 5 | |||||
| 6 | #include "file_storage.hpp" | ||||
| 7 | |||||
| 8 | #include <gmock/gmock.h> | ||||
| 9 | |||||
| 10 | class FileStorageMock : public FileStorage | ||||
| 11 | { | ||||
| 12 | public: | ||||
| 13 | FileStorageMock() : FileStorage("/tmp", "fake", -1) | ||||
| 14 | {} | ||||
| 15 | MOCK_METHOD(std::string, save, (const LogBuffer& buf), (const override)); | ||||
| 16 | }; | ||||