(cls)
| 733 | |
| 734 | @classmethod |
| 735 | def tearDownClass(cls): |
| 736 | cls.hmac.HMAC._init_openssl_hmac.assert_not_called() |
| 737 | cls.hmac.HMAC._init_builtin_hmac.assert_not_called() |
| 738 | # Do not assert that HMAC._init_old() has been called as it's tricky |
| 739 | # to determine whether a test for a specific hash function has been |
| 740 | # executed or not. On regular builds, it will be called but if a |
| 741 | # hash function is not available, it's hard to detect for which |
| 742 | # test we should checj HMAC._init_old() or not. |
| 743 | super().tearDownClass() |
| 744 | |
| 745 | |
| 746 | class PyRFCOpenSSLTestCase(ThroughObjectMixin, |
nothing calls this directly
no test coverage detected