| 295 | } |
| 296 | |
| 297 | void TestFixture::assertThrow(const char * const filename, const unsigned int linenr) const |
| 298 | { |
| 299 | ++fails_counter; |
| 300 | errmsg << getLocationStr(filename, linenr) << ": Assertion succeeded. " |
| 301 | << "The expected exception was thrown" << std::endl << "_____" << std::endl; |
| 302 | throw AssertFailedError(); |
| 303 | } |
| 304 | |
| 305 | void TestFixture::assertThrowFail(const char * const filename, const unsigned int linenr) const |
| 306 | { |
nothing calls this directly
no test coverage detected