()
| 90 | |
| 91 | |
| 92 | def test_storage_client_conflict() -> None: |
| 93 | service_locator.get_storage_client() |
| 94 | custom_storage_client = MemoryStorageClient() |
| 95 | |
| 96 | with pytest.raises(ServiceConflictError, match=r'StorageClient is already in use.'): |
| 97 | service_locator.set_storage_client(custom_storage_client) |
nothing calls this directly
no test coverage detected