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