()
| 74 | |
| 75 | |
| 76 | def test_custom_storage_client() -> None: |
| 77 | custom_storage_client = MemoryStorageClient() |
| 78 | service_locator.set_storage_client(custom_storage_client) |
| 79 | storage_client = service_locator.get_storage_client() |
| 80 | assert storage_client is custom_storage_client |
| 81 | |
| 82 | |
| 83 | def test_storage_client_overwrite_not_possible() -> None: |
nothing calls this directly
no test coverage detected