()
| 566 | |
| 567 | #[test] |
| 568 | fn test_parse_event_empty_input() { |
| 569 | let hook = make_hook(); |
| 570 | let result = hook.parse_event(HookType::SessionStart, b""); |
| 571 | assert!(result.is_err()); |
| 572 | } |
| 573 | |
| 574 | #[test] |
| 575 | fn test_parse_event_invalid_json() { |
nothing calls this directly
no test coverage detected