()
| 857 | |
| 858 | #[test] |
| 859 | fn test_extract_session_id_with_value() { |
| 860 | let id = CopilotHook::extract_session_id(Some("cp-123".to_string())); |
| 861 | assert_eq!(id, "cp-123"); |
| 862 | } |
| 863 | |
| 864 | #[test] |
| 865 | fn test_extract_session_id_empty_generates_fallback() { |
nothing calls this directly
no test coverage detected