| 8865 | } |
| 8866 | |
| 8867 | void ResultBuilder::captureExpectedException( std::string const& expectedMessage ) { |
| 8868 | if( expectedMessage.empty() ) |
| 8869 | captureExpectedException( Matchers::Impl::MatchAllOf<std::string>() ); |
| 8870 | else |
| 8871 | captureExpectedException( Matchers::Equals( expectedMessage ) ); |
| 8872 | } |
| 8873 | |
| 8874 | void ResultBuilder::captureExpectedException( Matchers::Impl::MatcherBase<std::string> const& matcher ) { |
| 8875 |
nothing calls this directly
no test coverage detected