()
| 587 | |
| 588 | #[test] |
| 589 | fn test_leaf_set_content_range() { |
| 590 | let mut leaf = make_leaf(); |
| 591 | assert_eq!(leaf.content_range(), 0..5); |
| 592 | |
| 593 | leaf.set_content_range(10..20); |
| 594 | assert_eq!(leaf.content_range(), 10..20); |
| 595 | assert_eq!(leaf.content_len(), 10); |
| 596 | } |
| 597 | |
| 598 | #[test] |
| 599 | fn test_leaf_delete_and_restore() { |
nothing calls this directly
no test coverage detected