(self, a, b)
| 1325 | raise NotImplementedError |
| 1326 | |
| 1327 | def assert_digest_equal(self, a, b): |
| 1328 | with self.subTest(a=a, b=b): |
| 1329 | self.assertTrue(self.compare_digest(a, b)) |
| 1330 | with self.subTest(a=b, b=a): |
| 1331 | self.assertTrue(self.compare_digest(b, a)) |
| 1332 | |
| 1333 | def assert_digest_not_equal(self, a, b): |
| 1334 | with self.subTest(a=a, b=b): |
no test coverage detected