()
| 700 | |
| 701 | #[test] |
| 702 | fn test_workspace_rooted_tracking() { |
| 703 | let mut workspace = Workspace::new(); |
| 704 | let pos = make_internal_position(NodeId::new(42), 0); |
| 705 | |
| 706 | workspace.mark_rooted(pos); |
| 707 | |
| 708 | assert!(workspace.is_rooted(&pos)); |
| 709 | } |
| 710 | |
| 711 | // Error Case Tests |
| 712 |
nothing calls this directly
no test coverage detected