(self, test, reason)
| 394 | self.errorInfo.append((test,err)) |
| 395 | |
| 396 | def notifyTestSkipped(self, test, reason): |
| 397 | super(TkTestRunner, self).notifyTestSkipped(test, reason) |
| 398 | self.skipCountVar.set(1 + self.skipCountVar.get()) |
| 399 | |
| 400 | def notifyTestFailedExpectedly(self, test, err): |
| 401 | super(TkTestRunner, self).notifyTestFailedExpectedly(test, err) |