Mutation Testing
Mutation Testing Score vs Code Coverage: Which Metric Actually Matters?
Code coverage tells you which lines executed during tests. Mutation score (MSI) tells you whether your tests would catch a change in behavior. These measure different things. Coverage is cheap and fast. Mutation testing is expensive and slow. The right answer is to use both — coverage as a floor that