Run tests.
(self)
| 171 | self.assertEqual(xyi, gf.mul(xi, yi)) # (1/x)*(1/y) == 1/(x*y) |
| 172 | |
| 173 | def test(self): |
| 174 | """Run tests.""" |
| 175 | for field_size in range(2, 65): |
| 176 | self.field_size_test(field_size) |
| 177 | |
| 178 | # The operations below operate on polynomials over GF(2^field_size), represented as lists of |
| 179 | # integers: |
nothing calls this directly
no test coverage detected