()
| 929 | |
| 930 | #[test] |
| 931 | fn test_turn_event_display_with_tool() { |
| 932 | let event = TurnEvent::new("sess-abc", HookType::PreToolUse).with_tool_name("Task"); |
| 933 | let display = event.to_string(); |
| 934 | assert!(display.contains("tool=Task")); |
| 935 | } |
| 936 | |
| 937 | #[test] |
| 938 | fn test_turn_event_serde_roundtrip() { |
nothing calls this directly
no test coverage detected