blob: b108df294ae4d46ed6e7dac77b7fce2ce63ebc77 [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,
Priyanga Ramasamye0084322022-09-27 06:28:33 -050013 (const std::string& obj, const std::string& inf,
14 const std::string& prop),
SunnySrivastava198497f8df02020-05-30 12:05:53 -050015 (override));
16};