| 11421 | namespace Exception { |
| 11422 | |
| 11423 | bool ExceptionMessageMatcher::match(std::exception const& ex) const { |
| 11424 | return ex.what() == m_message; |
| 11425 | } |
| 11426 | |
| 11427 | std::string ExceptionMessageMatcher::describe() const { |
| 11428 | return "exception message matches \"" + m_message + "\""; |
no test coverage detected