Files
UnrealEngine/Engine/Source/ThirdParty/FakeIt/2.0.2/include/fakeit/ThrowFalseEventHandler.hpp
2025-05-18 13:04:45 +08:00

20 lines
402 B
C++

//
// Created by eran on 11/04/2015.
//
#pragma once
#include "fakeit/EventHandler.hpp"
namespace fakeit {
class ThrowFalseEventHandler : public VerificationEventHandler {
void handle(const SequenceVerificationEvent &e) override {
throw false;
}
void handle(const NoMoreInvocationsVerificationEvent &e) override {
throw false;
}
};
}