refactor: rename llm worker crate to engine

This commit is contained in:
2026-06-25 22:46:26 +09:00
parent 22598710fd
commit 292fc4ea5d
202 changed files with 1129 additions and 1125 deletions
@@ -0,0 +1,23 @@
//! Gemini fixture-based integration tests
mod common;
#[test]
fn test_fixture_events_deserialize() {
common::assert_events_deserialize("gemini");
}
#[test]
fn test_fixture_event_sequence() {
common::assert_event_sequence("gemini");
}
#[test]
fn test_fixture_usage_tokens() {
common::assert_usage_tokens("gemini");
}
#[test]
fn test_fixture_with_timeline() {
common::assert_timeline_integration("gemini");
}