MCPcopy Index your code
hub / github.com/python/cpython / startTest

Method startTest

Lib/unittest/runner.py:59–65  ·  view source on GitHub ↗
(self, test)

Source from the content-addressed store, hash-verified

57 return str(test)
58
59 def startTest(self, test):
60 super(TextTestResult, self).startTest(test)
61 if self.showAll:
62 self.stream.write(self.getDescription(test))
63 self.stream.write(" ... ")
64 self.stream.flush()
65 self._newline = False
66
67 def _write_status(self, test, status):
68 is_subtest = isinstance(test, _SubTest)

Callers

nothing calls this directly

Calls 4

getDescriptionMethod · 0.95
superClass · 0.85
writeMethod · 0.45
flushMethod · 0.45

Tested by

no test coverage detected