Пример #1
0
        private void RunStryker(StrykerOptions options)
        {
            PrintStykerASCIIName();
            _ = PrintStrykerVersionInformationAsync();

            StrykerRunResult result = _stryker.RunMutationTest(options, _logBuffer.GetMessages());

            HandleStrykerRunResult(options, result);
        }
Пример #2
0
        private void RunStryker(StrykerOptions options)
        {
            PrintStykerASCIIName();
            _ = PrintStrykerVersionInformationAsync();

            StrykerRunResult results = _stryker.RunMutationTest(options, _logBuffer.GetMessages());

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