Helper method for sending result to the previous processor.
(self, test, result)
| 99 | return self._next_proc.next_test(test) |
| 100 | |
| 101 | def _send_result(self, test, result): |
| 102 | """Helper method for sending result to the previous processor.""" |
| 103 | self._prev_proc.result_for(test, result) |
| 104 | |
| 105 | class TestProcObserver(TestProc): |
| 106 | """Processor used for observing the data.""" |