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