llm_worker_rs/llm-worker/tests/openai_fixtures.rs
2026-01-16 16:58:03 +09:00

24 lines
429 B
Rust

//! OpenAI fixture-based integration tests
mod common;
#[test]
fn test_fixture_events_deserialize() {
common::assert_events_deserialize("openai");
}
#[test]
fn test_fixture_event_sequence() {
common::assert_event_sequence("openai");
}
#[test]
fn test_fixture_usage_tokens() {
common::assert_usage_tokens("openai");
}
#[test]
fn test_fixture_with_timeline() {
common::assert_timeline_integration("openai");
}