(self, test)
| 50 | self.durations = durations |
| 51 | |
| 52 | def getDescription(self, test): |
| 53 | doc_first_line = test.shortDescription() |
| 54 | if self.descriptions and doc_first_line: |
| 55 | return '\n'.join((str(test), doc_first_line)) |
| 56 | else: |
| 57 | return str(test) |
| 58 | |
| 59 | def startTest(self, test): |
| 60 | super(TextTestResult, self).startTest(test) |