(self, test)
| 403 | |
| 404 | |
| 405 | def notifyTestFinished(self, test): |
| 406 | self.remainingCountVar.set(self.remainingCountVar.get() - 1) |
| 407 | self.runCountVar.set(1 + self.runCountVar.get()) |
| 408 | fractionDone = float(self.runCountVar.get())/float(self.totalTests) |
| 409 | fillColor = len(self.errorInfo) and "red" or "green" |
| 410 | self.progressBar.setProgressFraction(fractionDone, fillColor) |
| 411 | |
| 412 | def showSelectedError(self): |
| 413 | selection = self.errorListbox.curselection() |
no test coverage detected