MCPcopy Index your code
hub / github.com/nodejs/node / Done

Method Done

tools/test.py:259–274  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

257 print('Running %i tests' % len(self.cases))
258
259 def Done(self):
260 print()
261 for failed in self.failed:
262 self.PrintFailureHeader(failed.test)
263 self.PrintFailureOutput(failed)
264 if len(self.failed) == 0:
265 print("===")
266 print("=== All tests succeeded")
267 print("===")
268 else:
269 print()
270 print("===")
271 print("=== %i tests failed" % len(self.failed))
272 if self.crashed > 0:
273 print("=== %i tests CRASHED" % self.crashed)
274 print("===")
275
276
277class VerboseProgressIndicator(SimpleProgressIndicator):

Callers

nothing calls this directly

Calls 3

PrintFailureHeaderMethod · 0.80
printFunction · 0.50
PrintFailureOutputMethod · 0.45

Tested by

no test coverage detected