(self, info, duration)
| 652 | self.start_time = time.time() |
| 653 | |
| 654 | def Passed(self, info, duration): |
| 655 | self.passed += 1 |
| 656 | if self.isatty: |
| 657 | self._Clear() |
| 658 | self._PrintShortStatus(info) |
| 659 | else: |
| 660 | sys.stderr.write('+ %s (%.3fs)\n' % (info.GetName(), duration)) |
| 661 | |
| 662 | def Failed(self, info, error_msg, result=None): |
| 663 | self.failed += 1 |
no test coverage detected