This closes #3 will act as a coverage tracker, to our functions

This commit is contained in:
Oscar 2025-02-18 11:09:26 +01:00
parent f61172b8dd
commit f3f1a4d42b

View file

@ -0,0 +1,9 @@
# coverage_tracker.py
branch_coverage = {}
total_run_branches = 20
for i in range(1, total_run_branches + 1):
branch_coverage[i] = 0
def mark_branch(branch_id):
branch_coverage[branch_id] += 1