()
| 10 | |
| 11 | |
| 12 | def test_default_configuration() -> None: |
| 13 | default_config = Configuration() |
| 14 | config = service_locator.get_configuration() |
| 15 | assert config == default_config # == because these are in fact different instances, which should be fine |
| 16 | |
| 17 | |
| 18 | def test_custom_configuration() -> None: |
nothing calls this directly
no test coverage detected