Test Coverage
Test coverage is a metric that measures the proportion of a codebase — expressed as lines, branches, functions, or statements — that is executed by an automated test suite.
5 resources across 1 library
Glossary Terms(5)
Mutation Testing
Mutation testing is a technique for evaluating the effectiveness of a test suite by automatically introducing small, deliberate faults ('mutants') into the sou…
Snapshot Testing
Snapshot testing is an automated testing technique that captures the output of a piece of code — such as a rendered UI component or a data structure — and comp…
Regression Testing
Regression testing is the practice of re-running existing tests after a code change to confirm that previously working functionality has not been broken by the…
Test Pyramid
The test pyramid is a model for structuring an automated test suite that recommends having many fast, cheap unit tests at the base, fewer integration tests in…
Test Coverage
Test coverage is a metric that measures the proportion of a codebase — expressed as lines, branches, functions, or statements — that is executed by an automate…