()
| 849 | |
| 850 | #[test] |
| 851 | fn test_full_roundtrip() { |
| 852 | let hook = make_hook(); |
| 853 | |
| 854 | // Parse all event types |
| 855 | let input = br#"{"session_id": "roundtrip-test"}"#; |
| 856 | for ht in hook.supported_hooks() { |
| 857 | let event = hook.parse_event(ht, input).unwrap(); |
| 858 | assert_eq!(event.session_id, "roundtrip-test"); |
| 859 | } |
| 860 | } |
| 861 | |
| 862 | // uuid_short helper tests |
| 863 |
nothing calls this directly
no test coverage detected