MCPcopy Create free account
hub / github.com/KentBeck/BPlusTree3 / assert_full_validation

Function assert_full_validation

rust/tests/test_utils.rs:184–187  ·  view source on GitHub ↗

Comprehensive tree validation including ordering

(tree: &BPlusTreeMap<i32, String>, context: &str)

Source from the content-addressed store, hash-verified

182
183/// Comprehensive tree validation including ordering
184pub fn assert_full_validation(tree: &BPlusTreeMap<i32, String>, context: &str) {
185 assert_invariants(tree, context);
186 verify_ordering(tree);
187}
188
189/// Comprehensive tree validation for integer trees
190pub fn assert_full_validation_int(tree: &BPlusTreeMap<i32, i32>, context: &str) {

Callers 2

test_attack_patternsFunction · 0.85

Calls 2

assert_invariantsFunction · 0.85
verify_orderingFunction · 0.85

Tested by

no test coverage detected