Files
UnrealEngine/Engine/Source/ThirdParty/FakeIt/2.0.2/include/fakeit/EventHandler.hpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

27 lines
596 B
C++

/*
* Copyright (c) 2014 Eran Pe'er.
*
* This program is made available under the terms of the MIT License.
*
* Created on Mar 10, 2014
*/
#pragma once
#include "fakeit/FakeitEvents.hpp"
namespace fakeit {
struct VerificationEventHandler {
virtual void handle(const SequenceVerificationEvent &e) = 0;
virtual void handle(const NoMoreInvocationsVerificationEvent &e) = 0;
};
struct EventHandler : public VerificationEventHandler {
using VerificationEventHandler::handle;
virtual void handle(const UnexpectedMethodCallEvent &e) = 0;
};
}