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