blob: 1ce910912d0d2c1b9beda803c1ac5d625c76cdb5 [file] [log] [blame]
Patrick Venture9efef5d2019-06-19 08:45:44 -07001#pragma once
2
3#include "fs.hpp"
4
5#include <string>
6
7#include <gmock/gmock.h>
8
9namespace ipmi_flash
10{
11
12class FileSystemMock : public FileSystemInterface
13{
14 public:
Willy Tuf4504862021-04-24 23:22:19 -070015 MOCK_METHOD(void, remove, (const std::string&), (const, override));
Patrick Venture9efef5d2019-06-19 08:45:44 -070016};
17} // namespace ipmi_flash