()
| 921 | |
| 922 | #[test] |
| 923 | fn test_turn_event_display_with_tool() { |
| 924 | let event = TurnEvent::new("sess-abc", HookType::PreToolUse).with_tool_name("Task"); |
| 925 | let display = event.to_string(); |
| 926 | assert!(display.contains("tool=Task")); |
| 927 | } |
| 928 | |
| 929 | #[test] |
| 930 | fn test_turn_event_serde_roundtrip() { |
nothing calls this directly
no test coverage detected