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