Concrete implementation of abstract method.
(self, item: DataItem)
| 20 | """Concrete implementation of Operator for testing.""" |
| 21 | |
| 22 | def process(self, item: DataItem) -> Result: |
| 23 | """Concrete implementation of abstract method.""" |
| 24 | return Result(item_idx=0) |
| 25 | |
| 26 | |
| 27 | class TestOperatorInit: |
no test coverage detected