| SunnySrivastava1984 | 97f8df0 | 2020-05-30 12:05:53 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |||||
| 3 | #include "utilInterface.hpp" | ||||
| 4 | |||||
| 5 | #include <gmock/gmock.h> | ||||
| 6 | |||||
| 7 | using namespace openpower::vpd::utils::interface; | ||||
| 8 | |||||
| 9 | class MockUtilCalls : public UtilityInterface | ||||
| 10 | { | ||||
| 11 | public: | ||||
| 12 | MOCK_METHOD(std::string, readBusProperty, | ||||
| 13 | (const string& obj, const string& inf, const string& prop), | ||||
| 14 | (override)); | ||||
| 15 | }; | ||||