(self, message)
| 1355 | self.PrintInfo('Total errors found: %d\n' % self.error_count) |
| 1356 | |
| 1357 | def PrintInfo(self, message): |
| 1358 | # _quiet does not represent --quiet flag. |
| 1359 | # Hide infos from stdout to keep stdout pure for machine consumption |
| 1360 | if not _quiet and self.output_format not in _MACHINE_OUTPUTS: |
| 1361 | sys.stdout.write(message) |
| 1362 | |
| 1363 | def PrintError(self, message): |
| 1364 | if self.output_format == 'junit': |
no test coverage detected