(self, a, b)
| 1377 | self.assertTrue(self.compare_digest(b, a)) |
| 1378 | |
| 1379 | def assert_digest_not_equal(self, a, b): |
| 1380 | with self.subTest(a=a, b=b): |
| 1381 | self.assertFalse(self.compare_digest(a, b)) |
| 1382 | with self.subTest(a=b, b=a): |
| 1383 | self.assertFalse(self.compare_digest(b, a)) |
| 1384 | |
| 1385 | def test_exceptions(self): |
| 1386 | for a, b in [ |
no test coverage detected