Framework Mode - Branch coverage
Folder Structure for Branch Coverage Testing Project
branch-coverage-testing/ ├── src/ │ └── main_code/ # Application source code │ └── example_module.py ├── tests/ # Test cases │ ├── test_example_module.py │ └── __init__.py ├── coverage_reports/ # Generated coverage reports ├── config/ │ └── coverage_config.yaml ├── utils/ # Helper functions for testing │ └── coverage_helper.py ├── requirements.txt └── README.md