Search in: Word
Vietnamese keyboard: Off
Virtual keyboard: Show
Computing (FOLDOC) dictionary
Test coverage
Jump to user comments
testing A measure of the proportion of a program exercised
by a test suite, usually expressed as a percentage. This
will typically involve collecting information about which
parts of a program are actually executed when running the test
suite in order to identify which branches of conditionalstatements which have been taken.
The most basic level of test coverage is code coveragetesting and the most methodical is path coverage testing.
Some intermediate levels of test coverage exist, but are
rarely used.