Determines, whether the given type satisfies the requirements of a control-policy.
More...
#include <Expectation.hpp>
template<typename T>
&& std::is_destructible_v<T>
&& std::same_as<T, std::remove_cvref_t<T>>
&& requires(T& policy)
{
{ std::as_const(policy).is_satisfied() } noexcept -> std::convertible_to<bool>;
{ std::as_const(policy).state() } -> std::convertible_to<control_state_t>;
policy.consume();
}
Determines, whether the given type satisfies the requirements of a control-policy.
Definition Expectation.hpp:390
Determines, whether the given type satisfies the requirements of a control-policy.