()
| 32 | |
| 33 | |
| 34 | def test_configuration_conflict() -> None: |
| 35 | service_locator.get_configuration() |
| 36 | custom_config = Configuration(default_browser_path='custom_path') |
| 37 | |
| 38 | with pytest.raises(ServiceConflictError, match=r'Configuration is already in use.'): |
| 39 | service_locator.set_configuration(custom_config) |
| 40 | |
| 41 | |
| 42 | def test_default_event_manager() -> None: |
nothing calls this directly
no test coverage detected