Set up test fixtures.
(self)
| 1426 | """Tests for Runner._should_append_event method.""" |
| 1427 | |
| 1428 | def setup_method(self): |
| 1429 | """Set up test fixtures.""" |
| 1430 | self.session_service = InMemorySessionService() |
| 1431 | self.artifact_service = InMemoryArtifactService() |
| 1432 | self.root_agent = MockLlmAgent("root_agent") |
| 1433 | self.runner = Runner( |
| 1434 | app_name="test_app", |
| 1435 | agent=self.root_agent, |
| 1436 | session_service=self.session_service, |
| 1437 | artifact_service=self.artifact_service, |
| 1438 | ) |
| 1439 | |
| 1440 | def test_should_append_event_finished_input_transcription(self): |
| 1441 | event = Event( |
nothing calls this directly
no test coverage detected