7 #ifndef FULFILLSCONSTRAINT_H 8 #define FULFILLSCONSTRAINT_H 10 #include "./expressions/expression.h" 14 template<
typename MatcherType >
22 template<
typename ActualType>
23 bool operator()(
const ActualType& actual)
const 25 return m_matcher.Matches(actual);
28 MatcherType m_matcher;
31 template<
typename MatcherType >
37 template<
typename MatcherType >
42 std::ostringstream builder;
43 builder << snowhouse::Stringize(constraint.m_matcher);
Definition: fulfillsconstraint.h:15
Definition: stringize.h:71
Definition: expression.h:17