(self)
| 1314 | """Tests for Runner._resolve_app and node support.""" |
| 1315 | |
| 1316 | def setup_method(self): |
| 1317 | self.session_service = InMemorySessionService() |
| 1318 | self.artifact_service = InMemoryArtifactService() |
| 1319 | self.root_agent = MockLlmAgent("root_agent") |
| 1320 | |
| 1321 | def test_resolve_app_with_agent_wraps_in_app(self): |
| 1322 | """Test that a bare agent is wrapped into an App.""" |
nothing calls this directly
no test coverage detected