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

Class FakeResultObserver

deps/v8/tools/testrunner/testproc/sequence_test.py:42–50  ·  view source on GitHub ↗

Observer to track all results sent back through the pipeline.

Source from the content-addressed store, hash-verified

40
41
42class FakeResultObserver(base.TestProcObserver):
43 """Observer to track all results sent back through the pipeline."""
44
45 def __init__(self):
46 super(FakeResultObserver, self).__init__()
47 self.tests = set([])
48
49 def _on_result_for(self, test, result):
50 self.tests.add(test.n)
51
52
53class FakeTest(object):

Callers 1

_testMethod · 0.70

Calls

no outgoing calls

Tested by 1

_testMethod · 0.56

Used in the wild real call sites across dependent graphs

searching dependent graphs…