(self, test)
| 94 | super(TextTestResult, self).addSubTest(test, subtest, err) |
| 95 | |
| 96 | def addSuccess(self, test): |
| 97 | super(TextTestResult, self).addSuccess(test) |
| 98 | t = self._theme |
| 99 | if self.showAll: |
| 100 | self._write_status(test, f"{t.passed}ok{t.reset}") |
| 101 | elif self.dots: |
| 102 | self.stream.write(f"{t.passed}.{t.reset}") |
| 103 | self.stream.flush() |
| 104 | |
| 105 | def addError(self, test, err): |
| 106 | super(TextTestResult, self).addError(test, err) |
nothing calls this directly
no test coverage detected