()
| 16 | |
| 17 | |
| 18 | def test_custom_configuration() -> None: |
| 19 | custom_config = Configuration(default_browser_path='custom_path') |
| 20 | service_locator.set_configuration(custom_config) |
| 21 | config = service_locator.get_configuration() |
| 22 | assert config is custom_config |
| 23 | |
| 24 | |
| 25 | def test_configuration_overwrite_not_possible() -> None: |
nothing calls this directly
no test coverage detected