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, |
Priyanga Ramasamy | e008432 | 2022-09-27 06:28:33 -0500 | [diff] [blame] | 13 | (const std::string& obj, const std::string& inf, |
| 14 | const std::string& prop), |
SunnySrivastava1984 | 97f8df0 | 2020-05-30 12:05:53 -0500 | [diff] [blame] | 15 | (override)); |
| 16 | }; |