(self, test, err)
| 398 | self.skipCountVar.set(1 + self.skipCountVar.get()) |
| 399 | |
| 400 | def notifyTestFailedExpectedly(self, test, err): |
| 401 | super(TkTestRunner, self).notifyTestFailedExpectedly(test, err) |
| 402 | self.expectFailCountVar.set(1 + self.expectFailCountVar.get()) |
| 403 | |
| 404 | |
| 405 | def notifyTestFinished(self, test): |
no test coverage detected