()
| 4326 | |
| 4327 | #[test] |
| 4328 | fn all_branches_empty_metadata() { |
| 4329 | let m1: HashMap<String, String> = HashMap::new(); |
| 4330 | let m2: HashMap<String, String> = HashMap::new(); |
| 4331 | let result = intersect_metadata_for_union([&m1, &m2]); |
| 4332 | assert!(result.is_empty()); |
| 4333 | } |
| 4334 | |
| 4335 | #[test] |
| 4336 | fn mixed_empty_and_conflicting() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…