Determines, whether the given type satisfies the requirements of an expectation-policy for the given signature.
More...
#include <Expectation.hpp>
template<typename T, typename Signature>
&& std::is_destructible_v<T>
&& std::same_as<T, std::remove_cvref_t<T>>
{
{ std::as_const(policy).is_satisfied() } noexcept -> std::convertible_to<bool>;
{ std::as_const(policy).matches(info) } -> std::convertible_to<bool>;
{ std::as_const(policy).describe() } -> std::convertible_to<std::optional<StringT>>;
{ policy.consume(info) };
}
Determines, whether the given type satisfies the requirements of an expectation-policy for the given ...
Definition Expectation.hpp:363
typename info_for_signature< Signature >::type info_for_signature_t
Definition Call.hpp:70
Determines, whether the given type satisfies the requirements of an expectation-policy for the given signature.