blob: 76a45c1974d269a6b1cfb28a7755ca59bee702f5 [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:
15 MOCK_CONST_METHOD1(remove, void(const std::string&));
16};
17} // namespace ipmi_flash