blob: 85d458f6cda53b8e596e317bd477e0a827a7d132 [file] [log] [blame]
#pragma once
#include "utilInterface.hpp"
#include <gmock/gmock.h>
using namespace openpower::vpd::utils::interface;
class MockUtilCalls : public UtilityInterface
{
public:
MOCK_METHOD(std::string, readBusProperty,
(const string& obj, const string& inf, const string& prop),
(override));
};