| 9054 | } |
| 9055 | |
| 9056 | void ResultBuilder::captureExpectedException( std::string const& expectedMessage ) { |
| 9057 | if( expectedMessage.empty() ) |
| 9058 | captureExpectedException( Matchers::Impl::MatchAllOf<std::string>() ); |
| 9059 | else |
| 9060 | captureExpectedException( Matchers::Equals( expectedMessage ) ); |
| 9061 | } |
| 9062 | |
| 9063 | void ResultBuilder::captureExpectedException( Matchers::Impl::MatcherBase<std::string> const& matcher ) { |
| 9064 |
nothing calls this directly
no test coverage detected