()
| 534 | |
| 535 | #[test] |
| 536 | fn test_attack_patterns() { |
| 537 | let mut tree = create_tree_4_with_data(50); |
| 538 | |
| 539 | // Test deletion range attack |
| 540 | deletion_range_attack(&mut tree, 10, 40); |
| 541 | assert_eq!(tree.len(), 20); |
| 542 | assert_full_validation(&tree, "deletion range attack"); |
| 543 | } |
| 544 | } |
nothing calls this directly
no test coverage detected