()
| 1371 | |
| 1372 | #[test] |
| 1373 | fn test_build_hierarchy_empty() { |
| 1374 | let items: Vec<TreeItem> = vec![]; |
| 1375 | let hierarchy = build_tree_hierarchy(&items); |
| 1376 | |
| 1377 | assert!(hierarchy.is_empty()); |
| 1378 | } |
| 1379 | |
| 1380 | #[test] |
| 1381 | fn test_build_hierarchy_root_files() { |
nothing calls this directly
no test coverage detected