(self)
| 361 | message=message) |
| 362 | |
| 363 | def notifyRunning(self): |
| 364 | self.runCountVar.set(0) |
| 365 | self.failCountVar.set(0) |
| 366 | self.errorCountVar.set(0) |
| 367 | self.remainingCountVar.set(self.totalTests) |
| 368 | self.errorInfo = [] |
| 369 | while self.errorListbox.size(): |
| 370 | self.errorListbox.delete(0) |
| 371 | #Stopping seems not to work, so simply disable the start button |
| 372 | #self.stopGoButton.config(command=self.stopClicked, text="Stop") |
| 373 | self.stopGoButton.config(state=tk.DISABLED) |
| 374 | self.progressBar.setProgressFraction(0.0) |
| 375 | self.top.update_idletasks() |
| 376 | |
| 377 | def notifyStopped(self): |
| 378 | self.stopGoButton.config(state=tk.DISABLED) |
nothing calls this directly
no test coverage detected