Method called by previous processor whenever it produces new test. This method shouldn't be called by anyone except previous processor. Returns a boolean value to signal whether the test was loaded into the execution queue successfully or not.
(self, test)
| 48 | next_proc._prev_proc = self |
| 49 | self._next_proc = next_proc |
| 50 | def next_test(self, test): |
| 51 | """ |
| 52 | Method called by previous processor whenever it produces new test. |
| 53 | This method shouldn't be called by anyone except previous processor. |
| 54 | Returns a boolean value to signal whether the test was loaded into the |
| 55 | execution queue successfully or not. |
| 56 | """ |
| 57 | raise NotImplementedError() |
| 58 | |
| 59 | def result_for(self, test, result): |
| 60 | """ |