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

Function run_quick_fuzz_test

python/tests/fuzz_test.py:473–478  ·  view source on GitHub ↗

Run a smaller fuzz test for development/testing

()

Source from the content-addressed store, hash-verified

471
472
473def run_quick_fuzz_test():
474 """Run a smaller fuzz test for development/testing"""
475 tester = BPlusTreeFuzzTester(
476 capacity=16, prepopulate=100
477 ) # Pre-populate with 100 elements
478 return tester.run_fuzz_test(1000) # Much smaller test
479
480
481def run_full_fuzz_test():

Callers 1

fuzz_test.pyFile · 0.85

Calls 2

run_fuzz_testMethod · 0.95
BPlusTreeFuzzTesterClass · 0.85

Tested by

no test coverage detected