()
| 573 | |
| 574 | #[test] |
| 575 | fn test_parse_event_invalid_json() { |
| 576 | let hook = make_hook(); |
| 577 | let result = hook.parse_event(HookType::SessionStart, b"not json"); |
| 578 | assert!(result.is_err()); |
| 579 | } |
| 580 | |
| 581 | #[test] |
| 582 | fn test_parse_session_start_missing_session_id() { |
nothing calls this directly
no test coverage detected