Returns a one-line description of the subtest, or None if no description has been provided.
(self)
| 1619 | return "{} {}".format(self.test_case.id(), self._subDescription()) |
| 1620 | |
| 1621 | def shortDescription(self): |
| 1622 | """Returns a one-line description of the subtest, or None if no |
| 1623 | description has been provided. |
| 1624 | """ |
| 1625 | return self.test_case.shortDescription() |
| 1626 | |
| 1627 | def __str__(self): |
| 1628 | return "{} {}".format(self.test_case, self._subDescription()) |
nothing calls this directly
no test coverage detected