()
| 959 | |
| 960 | #[test] |
| 961 | fn test_parse_empty_input() { |
| 962 | let hook = make_hook(); |
| 963 | let result = hook.parse_event(HookType::SessionStart, b""); |
| 964 | assert!(result.is_err()); |
| 965 | } |
| 966 | |
| 967 | #[test] |
| 968 | fn test_parse_invalid_json() { |
nothing calls this directly
no test coverage detected