Recent Entries 2
- pattern tip 124d agoMutation testing with Stryker: measure whether tests actually catch bugsHigh coverage metrics do not mean tests are actually testing anything. A test that calls a function but makes no assertions will show 100% line coverage. The tests pass because nothing is verified, not because the code is correct.
- pattern tip 124d agoMutation Testing with Stryker for Meaningful Coverage100% code coverage does not guarantee tests catch bugs. Tests that run code without asserting results will have perfect coverage but detect nothing.