(self, test, err)
| 165 | self.callback.notifyTestErrored(test, err) |
| 166 | |
| 167 | def addFailure(self, test, err): |
| 168 | unittest.TestResult.addFailure(self, test, err) |
| 169 | self.callback.notifyTestFailed(test, err) |
| 170 | |
| 171 | def addSkip(self, test, reason): |
| 172 | super(GUITestResult,self).addSkip(test, reason) |
nothing calls this directly
no test coverage detected