1 #pragma once 2 3 #include "progress.hpp" 4 5 #include <cstdint> 6 7 #include <gmock/gmock.h> 8 9 namespace host_tool 10 { 11 12 class 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 20