blob: b108df294ae4d46ed6e7dac77b7fce2ce63ebc77 [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 std::string& obj, const std::string& inf,
const std::string& prop),
(override));
};