Files
clio/tests/common/util/MockAmendmentBlockHandler.hpp
2026-03-24 15:25:32 +00:00

11 lines
275 B
C++

#pragma once
#include "etl/AmendmentBlockHandlerInterface.hpp"
#include <gmock/gmock.h>
struct MockAmendmentBlockHandler : etl::AmendmentBlockHandlerInterface {
MOCK_METHOD(void, notifyAmendmentBlocked, (), (override));
MOCK_METHOD(void, stop, (), (override));
};