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