Set up test fixtures.
(self)
| 1122 | """Tests for Runner cache config extraction and handling.""" |
| 1123 | |
| 1124 | def setup_method(self): |
| 1125 | """Set up test fixtures.""" |
| 1126 | self.session_service = InMemorySessionService() |
| 1127 | self.artifact_service = InMemoryArtifactService() |
| 1128 | self.root_agent = MockLlmAgent("root_agent") |
| 1129 | |
| 1130 | def test_runner_extracts_cache_config_from_app(self): |
| 1131 | """Test that Runner extracts cache config from App.""" |
nothing calls this directly
no test coverage detected