(self, out, test, example, got)
| 643 | return doctest.DocTestRunner.report_start(self, out, test, example) |
| 644 | |
| 645 | def report_success(self, out, test, example, got): |
| 646 | if self._verbose: |
| 647 | self._report_item_name(out, new_line=True) |
| 648 | return doctest.DocTestRunner.report_success(self, out, test, example, got) |
| 649 | |
| 650 | def report_unexpected_exception(self, out, test, example, exc_info): |
| 651 | self._report_item_name(out) |
nothing calls this directly
no test coverage detected