19efef5d9SPatrick Venture #pragma once 29efef5d9SPatrick Venture 39efef5d9SPatrick Venture #include "fs.hpp" 49efef5d9SPatrick Venture 59efef5d9SPatrick Venture #include <string> 69efef5d9SPatrick Venture 79efef5d9SPatrick Venture #include <gmock/gmock.h> 89efef5d9SPatrick Venture 99efef5d9SPatrick Venture namespace ipmi_flash 109efef5d9SPatrick Venture { 119efef5d9SPatrick Venture 129efef5d9SPatrick Venture class FileSystemMock : public FileSystemInterface 139efef5d9SPatrick Venture { 149efef5d9SPatrick Venture public: 15*f450486fSWilly Tu MOCK_METHOD(void, remove, (const std::string&), (const, override)); 169efef5d9SPatrick Venture }; 179efef5d9SPatrick Venture } // namespace ipmi_flash 18