blob: 85d458f6cda53b8e596e317bd477e0a827a7d132 [file] [log] [blame]
SunnySrivastava198497f8df02020-05-30 12:05:53 -05001#pragma once
2
3#include "utilInterface.hpp"
4
5#include <gmock/gmock.h>
6
7using namespace openpower::vpd::utils::interface;
8
9class 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};