(self, test)
| 170 | """Processor for filtering tests.""" |
| 171 | |
| 172 | def next_test(self, test): |
| 173 | if self._filter(test): |
| 174 | return False |
| 175 | |
| 176 | return self._send_test(test) |
| 177 | |
| 178 | def result_for(self, test, result): |
| 179 | self._send_result(test, result) |
nothing calls this directly
no test coverage detected