From 0d960931a3936a6aa0c0fc4e549217820fed7d30 Mon Sep 17 00:00:00 2001 From: Kamenev Yury Date: Wed, 6 Jul 2022 13:48:31 +0300 Subject: [PATCH] Removed always used coverage-based minimization strategy --- .../org/utbot/intellij/plugin/generator/CodeGenerator.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/CodeGenerator.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/CodeGenerator.kt index d24c103d95..ea06ea3f1a 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/CodeGenerator.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/CodeGenerator.kt @@ -36,10 +36,6 @@ class CodeGenerator( engineActions: MutableList<(UtBotSymbolicEngine) -> Unit> = mutableListOf(), isCanceled: () -> Boolean, ) { - init { - UtSettings.testMinimizationStrategyType = TestSelectionStrategyType.COVERAGE_STRATEGY - } - val generator = (project.service().testCasesGenerator as UtBotTestCaseGenerator).apply { init(Paths.get(buildDir), classpath, pluginJarsPath, engineActions, isCanceled) }