| 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: | ||||
| Willy Tu | f450486 | 2021-04-24 23:22:19 -0700 | [diff] [blame] | 15 | MOCK_METHOD(void, remove, (const std::string&), (const, override)); |
| Patrick Venture | 9efef5d | 2019-06-19 08:45:44 -0700 | [diff] [blame] | 16 | }; |
| 17 | } // namespace ipmi_flash | ||||