xref: /openbmc/phosphor-ipmi-flash/cleanup/test/filesystem_mock.hpp (revision f450486f238d6402b3ff9680ff50d2987b4f2d3d)
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