| 11426 | namespace Exception { |
| 11427 | |
| 11428 | bool ExceptionMessageMatcher::match(std::exception const& ex) const { |
| 11429 | return ex.what() == m_message; |
| 11430 | } |
| 11431 | |
| 11432 | std::string ExceptionMessageMatcher::describe() const { |
| 11433 | return "exception message matches \"" + m_message + "\""; |
no test coverage detected