Embed presentation
Download to read offline











Coverage analysis measures how much of a program's code is executed during testing. There are three main types of coverage: statement coverage measures the percentage of executable lines used, branch coverage measures the percentage of possible code paths taken, and condition coverage measures that all conditions and combinations of conditions are used. Tools like Codecov and the Python coverage package can be used to instrument code and generate coverage reports that help testers find dead or unused code.










