Patrick Venture | 3ecb350 | 2019-05-17 11:03:51 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include "status.hpp" |
| 4 | #include "verify.hpp" |
| 5 | |
| 6 | #include <memory> |
| 7 | #include <vector> |
| 8 | |
| 9 | #include <gtest/gtest.h> |
| 10 | |
Patrick Venture | 1d5a31c | 2019-05-20 11:38:22 -0700 | [diff] [blame] | 11 | namespace ipmi_flash |
Patrick Venture | 3ecb350 | 2019-05-17 11:03:51 -0700 | [diff] [blame] | 12 | { |
| 13 | |
| 14 | class VerificationMock : public VerificationInterface |
| 15 | { |
| 16 | public: |
| 17 | MOCK_METHOD0(triggerVerification, bool()); |
| 18 | MOCK_METHOD0(abortVerification, void()); |
Patrick Venture | da66fd8 | 2019-06-03 11:11:24 -0700 | [diff] [blame] | 19 | MOCK_METHOD0(status, ActionStatus()); |
Patrick Venture | 3ecb350 | 2019-05-17 11:03:51 -0700 | [diff] [blame] | 20 | }; |
| 21 | |
| 22 | std::unique_ptr<VerificationInterface> CreateVerifyMock() |
| 23 | { |
| 24 | return std::make_unique<VerificationMock>(); |
| 25 | } |
| 26 | |
Patrick Venture | 1d5a31c | 2019-05-20 11:38:22 -0700 | [diff] [blame] | 27 | } // namespace ipmi_flash |