| 303 | } |
| 304 | |
| 305 | void TestFixture::assertThrowFail(const char * const filename, const unsigned int linenr) const |
| 306 | { |
| 307 | ++fails_counter; |
| 308 | errmsg << getLocationStr(filename, linenr) << ": Assertion failed. " |
| 309 | << "The expected exception was not thrown" << std::endl << "_____" << std::endl; |
| 310 | throw AssertFailedError(); |
| 311 | } |
| 312 | |
| 313 | void TestFixture::assertNoThrowFail(const char * const filename, const unsigned int linenr, bool bailout) const |
| 314 | { |
nothing calls this directly
no test coverage detected