(self)
| 82 | self.assertIs(pooler[1], outputs[1]) |
| 83 | |
| 84 | def test_setitem(self): |
| 85 | outputs = [PoolingSequenceGroupOutput(data=1), PoolingSequenceGroupOutput(data=2)] |
| 86 | pooler = PoolerOutput(outputs=outputs) |
| 87 | new_output = PoolingSequenceGroupOutput(data=999) |
| 88 | pooler[1] = new_output |
| 89 | self.assertIs(pooler[1], new_output) |
| 90 | |
| 91 | def test_eq_same(self): |
| 92 | outputs1 = [PoolingSequenceGroupOutput(data=1)] |
nothing calls this directly
no test coverage detected