(self, test)
| 177 | self.callback.notifyTestFailedExpectedly(test, err) |
| 178 | |
| 179 | def stopTest(self, test): |
| 180 | unittest.TestResult.stopTest(self, test) |
| 181 | self.callback.notifyTestFinished(test) |
| 182 | |
| 183 | def startTest(self, test): |
| 184 | unittest.TestResult.startTest(self, test) |
nothing calls this directly
no test coverage detected