(self, backend, subtests)
| 58 | param_loader, path, file_names, cipher_factory, mode_factory |
| 59 | ): |
| 60 | def test_encryption(self, backend, subtests): |
| 61 | for params in _load_all_params(path, file_names, param_loader): |
| 62 | with subtests.test(): |
| 63 | encrypt_test(backend, cipher_factory, mode_factory, params) |
| 64 | |
| 65 | return test_encryption |
| 66 |
nothing calls this directly
no test coverage detected