()
| 560 | |
| 561 | #[test] |
| 562 | fn test_missing_context_up_context() { |
| 563 | let pos = make_position(42, 100); |
| 564 | let change = NodeId::new(50); |
| 565 | let conflict = MissingContextConflict::predecessors(pos, change); |
| 566 | |
| 567 | assert!(conflict.is_predecessor); |
| 568 | } |
| 569 | |
| 570 | #[test] |
| 571 | fn test_missing_context_down_context() { |
nothing calls this directly
no test coverage detected