(self)
| 455 | class Win64WinregTests(BaseWinregTests): |
| 456 | |
| 457 | def test_named_arguments(self): |
| 458 | self._test_named_args(HKEY_CURRENT_USER, test_key_name) |
| 459 | # Clean up and also exercise the named arguments |
| 460 | DeleteKeyEx(key=HKEY_CURRENT_USER, sub_key=test_key_name, |
| 461 | access=KEY_ALL_ACCESS, reserved=0) |
| 462 | |
| 463 | @unittest.skipIf(win32_edition() in ('WindowsCoreHeadless', 'IoTEdgeOS'), "APIs not available on WindowsCoreHeadless") |
| 464 | def test_reflection_functions(self): |
nothing calls this directly
no test coverage detected