()
| 569 | |
| 570 | #[test] |
| 571 | fn test_missing_context_down_context() { |
| 572 | let pos = make_position(42, 100); |
| 573 | let change = NodeId::new(50); |
| 574 | let conflict = MissingContextConflict::successors(pos, change); |
| 575 | |
| 576 | assert!(!conflict.is_predecessor); |
| 577 | } |
| 578 | |
| 579 | #[test] |
| 580 | fn test_missing_context_with_expected() { |
nothing calls this directly
no test coverage detected