(self)
| 96 | self.assertTrue(pooler1 == pooler2) |
| 97 | |
| 98 | def test_eq_diff(self): |
| 99 | pooler1 = PoolerOutput(outputs=[PoolingSequenceGroupOutput(data=1)]) |
| 100 | pooler2 = PoolerOutput(outputs=[PoolingSequenceGroupOutput(data=2)]) |
| 101 | self.assertFalse(pooler1 == pooler2) |
| 102 | |
| 103 | def test_eq_type_mismatch(self): |
| 104 | pooler = PoolerOutput(outputs=[PoolingSequenceGroupOutput(data=1)]) |
nothing calls this directly
no test coverage detected