Mutation Testing
Mutation testing is a technique for evaluating the effectiveness of a test suite by automatically introducing small, deliberate faults ('mutants') into the source code and checking whether the existing tests detect and fail on each one.
4 resources across 1 library
Glossary Terms(4)
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…
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…