This is the overload that takes a string and infers the Equals matcher from it The more general overload, that takes any string matcher, is in catch_capture_matchers.cpp
| 6369 | // This is the overload that takes a string and infers the Equals matcher from it |
| 6370 | // The more general overload, that takes any string matcher, is in catch_capture_matchers.cpp |
| 6371 | void handleExceptionMatchExpr( AssertionHandler& handler, std::string const& str, StringRef const& matcherString ) { |
| 6372 | handleExceptionMatchExpr( handler, Matchers::Equals( str ), matcherString ); |
| 6373 | } |
| 6374 | |
| 6375 | } // namespace Catch |
| 6376 | // end catch_assertionhandler.cpp |
nothing calls this directly
no test coverage detected