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
| 4855 | // This is the overload that takes a string and infers the Equals matcher from it |
| 4856 | // The more general overload, that takes any string matcher, is in catch_capture_matchers.cpp |
| 4857 | void handleExceptionMatchExpr(AssertionHandler &handler, std::string const &str, StringRef matcherString) { |
| 4858 | handleExceptionMatchExpr(handler, Matchers::Equals(str), matcherString); |
| 4859 | } |
| 4860 | |
| 4861 | } // namespace Catch |
| 4862 | // end catch_assertionhandler.cpp |
nothing calls this directly
no test coverage detected