| 211 | } |
| 212 | |
| 213 | void TestOutput::printFileAndLineForTestAndFailure(const TestFailure& failure) |
| 214 | { |
| 215 | printErrorInFileOnLineFormattedForWorkingEnvironment(failure.getTestFileName(), failure.getTestLineNumber()); |
| 216 | printFailureInTest(failure.getTestName()); |
| 217 | printErrorInFileOnLineFormattedForWorkingEnvironment(failure.getFileName(), failure.getFailureLineNumber()); |
| 218 | } |
| 219 | |
| 220 | void TestOutput::printFileAndLineForFailure(const TestFailure& failure) |
| 221 | { |
nothing calls this directly
no test coverage detected