Create a ServiceLocator with MemoryStorageClient for testing.
(memory_storage_client: MemoryStorageClient)
| 29 | |
| 30 | @pytest.fixture |
| 31 | def service_locator(memory_storage_client: MemoryStorageClient) -> ServiceLocator: |
| 32 | """Create a ServiceLocator with MemoryStorageClient for testing.""" |
| 33 | return ServiceLocator(storage_client=memory_storage_client) |
| 34 | |
| 35 | |
| 36 | @pytest.fixture |
nothing calls this directly
no test coverage detected