Patrick Venture | 9efef5d | 2019-06-19 08:45:44 -0700 | [diff] [blame^] | 1 | #pragma once |
2 | |||||
3 | #include "fs.hpp" | ||||
4 | |||||
5 | #include <string> | ||||
6 | |||||
7 | #include <gmock/gmock.h> | ||||
8 | |||||
9 | namespace ipmi_flash | ||||
10 | { | ||||
11 | |||||
12 | class FileSystemMock : public FileSystemInterface | ||||
13 | { | ||||
14 | public: | ||||
15 | MOCK_CONST_METHOD1(remove, void(const std::string&)); | ||||
16 | }; | ||||
17 | } // namespace ipmi_flash |