Run the full million-operation fuzz test
()
| 479 | |
| 480 | |
| 481 | def run_full_fuzz_test(): |
| 482 | """Run the full million-operation fuzz test""" |
| 483 | tester = BPlusTreeFuzzTester( |
| 484 | capacity=16, prepopulate=1000 |
| 485 | ) # Pre-populate with 1000 elements |
| 486 | return tester.run_fuzz_test(1000000) |
| 487 | |
| 488 | |
| 489 | def run_complex_structure_test(): |
no test coverage detected