Concrete implementation of Operator for testing.
| 17 | |
| 18 | |
| 19 | class ConcreteOperator(Operator): |
| 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 outgoing calls