| 899 | }; |
| 900 | |
| 901 | struct MatcherC : Catch::Matchers::MatcherGenericBase { |
| 902 | std::string describe() const override { return "equals: (T) 1"; } |
| 903 | template <typename T> bool match( T t ) const { return t == T{ 1 }; } |
| 904 | }; |
| 905 | |
| 906 | struct MatcherD : Catch::Matchers::MatcherGenericBase { |
| 907 | std::string describe() const override { return "equals: true"; } |