Implementation of 'a == b' to test.
(a, b)
| 1321 | |
| 1322 | @staticmethod |
| 1323 | def compare_digest(a, b): |
| 1324 | """Implementation of 'a == b' to test.""" |
| 1325 | raise NotImplementedError |
| 1326 | |
| 1327 | def assert_digest_equal(self, a, b): |
| 1328 | with self.subTest(a=a, b=b): |
no outgoing calls
no test coverage detected