Difference between baseline and since? #2860
-
I am looking to use Stryker.NET in a CI pipeline. Is there any advantage to using "with-baseline" over "since" (compared to the same differences being tested)? |
Beta Was this translation helpful? Give feedback.
Answered by
rouke-broersma
Feb 26, 2024
Replies: 1 comment 1 reply
-
Baseline aims to provide a full report even though only a partial test is performed. It does so by reusing a previous result and modifying this with the incremental result. Since does not do this, so since only shows you mutants in changed code, or for mutants of which the covering tests have changed. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rouke-broersma
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Baseline aims to provide a full report even though only a partial test is performed. It does so by reusing a previous result and modifying this with the incremental result. Since does not do this, so since only shows you mutants in changed code, or for mutants of which the covering tests have changed.