(self, test, err)
| 389 | self.errorInfo.append((test,err)) |
| 390 | |
| 391 | def notifyTestErrored(self, test, err): |
| 392 | self.errorCountVar.set(1 + self.errorCountVar.get()) |
| 393 | self.errorListbox.insert(tk.END, "Error: %s" % test) |
| 394 | self.errorInfo.append((test,err)) |
| 395 | |
| 396 | def notifyTestSkipped(self, test, reason): |
| 397 | super(TkTestRunner, self).notifyTestSkipped(test, reason) |