(self, test, err)
| 173 | self.callback.notifyTestSkipped(test, reason) |
| 174 | |
| 175 | def addExpectedFailure(self, test, err): |
| 176 | super(GUITestResult,self).addExpectedFailure(test, err) |
| 177 | self.callback.notifyTestFailedExpectedly(test, err) |
| 178 | |
| 179 | def stopTest(self, test): |
| 180 | unittest.TestResult.stopTest(self, test) |
nothing calls this directly
no test coverage detected