()
| 517 | |
| 518 | #[test] |
| 519 | fn test_parse_event_empty_input() { |
| 520 | let hook = make_hook(); |
| 521 | let result = hook.parse_event(HookType::TurnStart, b""); |
| 522 | assert!(result.is_err()); |
| 523 | } |
| 524 | |
| 525 | #[test] |
| 526 | fn test_parse_event_invalid_json() { |
nothing calls this directly
no test coverage detected