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

Method startTest

Lib/unittest/result.py:59–63  ·  view source on GitHub ↗

Called when the given test is about to be run

(self, test)

Source from the content-addressed store, hash-verified

57 "Called by TestRunner after test run"
58
59 def startTest(self, test):
60 "Called when the given test is about to be run"
61 self.testsRun += 1
62 self._mirrorOutput = False
63 self._setupStdout()
64
65 def _setupStdout(self):
66 if self.buffer:

Calls 1

_setupStdoutMethod · 0.95