(self)
| 257 | print('Running %i tests' % len(self.cases)) |
| 258 | |
| 259 | def Done(self): |
| 260 | print() |
| 261 | for failed in self.failed: |
| 262 | self.PrintFailureHeader(failed.test) |
| 263 | self.PrintFailureOutput(failed) |
| 264 | if len(self.failed) == 0: |
| 265 | print("===") |
| 266 | print("=== All tests succeeded") |
| 267 | print("===") |
| 268 | else: |
| 269 | print() |
| 270 | print("===") |
| 271 | print("=== %i tests failed" % len(self.failed)) |
| 272 | if self.crashed > 0: |
| 273 | print("=== %i tests CRASHED" % self.crashed) |
| 274 | print("===") |
| 275 | |
| 276 | |
| 277 | class VerboseProgressIndicator(SimpleProgressIndicator): |
nothing calls this directly
no test coverage detected