Beispiel #1
0
        private void RunStryker(StrykerOptions options)
        {
            // start with the stryker header
            PrintStykerASCIIName();

            StrykerRunResult results = _stryker.RunMutationTest(options);

            if (!results.IsScoreAboveThresholdBreak())
            {
                HandleBreakingThresholdScore(options, results);
            }
        }
Beispiel #2
0
        private void RunStryker(StrykerOptions options)
        {
            PrintStykerASCIIName();
            _ = PrintStrykerVersionInformationAsync();

            StrykerRunResult results = _stryker.RunMutationTest(options);

            if (!results.IsScoreAboveThresholdBreak())
            {
                HandleBreakingThresholdScore(options, results);
            }
        }