Implementation of 'a == b' to test.
(a, b)
| 1367 | |
| 1368 | @staticmethod |
| 1369 | def compare_digest(a, b): |
| 1370 | """Implementation of 'a == b' to test.""" |
| 1371 | raise NotImplementedError |
| 1372 | |
| 1373 | def assert_digest_equal(self, a, b): |
| 1374 | with self.subTest(a=a, b=b): |
no outgoing calls
no test coverage detected