()
| 345 | |
| 346 | #[test] |
| 347 | fn skips_empty_and_whitespace() { |
| 348 | let input = vec![String::new(), " ".to_string(), "valid".to_string()]; |
| 349 | let result = normalize_protocols(&input); |
| 350 | assert_eq!(result, vec!["valid"]); |
| 351 | } |
| 352 | |
| 353 | #[test] |
| 354 | fn empty_input() { |
nothing calls this directly
no test coverage detected