7namespace CppSpec::Matchers {
9template <
typename A,
typename E>
10class BeLessThan :
public MatcherBase<A, E> {
13 bool match()
override {
return this->actual() < this->expected(); }
14 std::string verb()
override {
return "be less than"; }
10class BeLessThan :
public MatcherBase<A, E> {
…};
Wraps the target of an expectation.
Definition expectation.hpp:47
Definition have_error.hpp:9
Contains the base class for all Matchers.