(self, out, test, example, exc_info)
| 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) |
| 652 | return doctest.DocTestRunner.report_unexpected_exception( |
| 653 | self, out, test, example, exc_info) |
| 654 | |
| 655 | def report_failure(self, out, test, example, got): |
| 656 | self._report_item_name(out) |
nothing calls this directly
no test coverage detected