(self, output)
| 297 | pass |
| 298 | |
| 299 | def HasRun(self, output): |
| 300 | total = self.succeeded + len(self.failed) |
| 301 | if (total > 1) and (total % 50 == 1): |
| 302 | sys.stdout.write('\n') |
| 303 | if output.UnexpectedOutput(): |
| 304 | if output.HasCrashed(): |
| 305 | sys.stdout.write('C') |
| 306 | sys.stdout.flush() |
| 307 | elif output.HasTimedOut(): |
| 308 | sys.stdout.write('T') |
| 309 | sys.stdout.flush() |
| 310 | else: |
| 311 | sys.stdout.write('F') |
| 312 | sys.stdout.flush() |
| 313 | else: |
| 314 | sys.stdout.write('.') |
| 315 | sys.stdout.flush() |
| 316 | |
| 317 | class ActionsAnnotationProgressIndicator(DotsProgressIndicator): |
| 318 | def AboutToRun(self, case): |
nothing calls this directly
no test coverage detected