blob: 80c0af17c8f4ed3c892fc83aa27b7059bf0641b6 [file] [log] [blame]
Patrick Venturecf9b2192019-06-27 12:09:52 -07001#pragma once
2
3#include "progress.hpp"
4
5#include <cstdint>
6
7#include <gmock/gmock.h>
8
9namespace host_tool
10{
11
12class ProgressMock : public ProgressInterface
13{
14 public:
15 MOCK_METHOD1(updateProgress, void(std::int64_t));
16 MOCK_METHOD1(start, void(std::int64_t));
17};
18
19} // namespace host_tool