Lines Matching full:processor
12 calling previous/next processor in the chain.
18 If processor ignores the test it has to return SkippedResult.
20 the previous processor it can enclose them in GroupedResult.
25 When test processor needs to modify the test or create some variants of the
26 test it creates subtests and sends them to the next processor.
29 some suffix given by test processor, e.g. its name + subtest type.
30 - processor - which created it
63 Method called by previous processor or processor pipeline creator to let
72 # during result creation (in the output processor), so the result is
80 Method called by previous processor whenever it produces new test.
81 This method shouldn't be called by anyone except previous processor.
87 Method called by next processor whenever it has result for some test.
88 This method shouldn't be called by anyone except next processor.
111 """Helper method for sending test to the next processor."""
115 """Helper method for sending result to the previous processor."""
123 """Processor used for observing the data."""
140 """Method called after receiving test from previous processor but before
145 """Method called after receiving result from next processor but before
154 """Processor for creating subtests."""
175 test: test used by current processor to create the subtest.
177 result: subtest execution result created by the output processor.
183 """Creates subtest with subtest id <processor name>-`subtest_id`."""
189 """Processor for filtering tests."""