File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api
utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/components Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1081,7 +1081,7 @@ enum class CodegenLanguage(
10811081 @Suppress(" unused" ) override val description : String = " Generate unit tests in $displayName "
10821082) : CodeGenerationSettingItem {
10831083 JAVA (displayName = " Java" ),
1084- KOTLIN (displayName = " Kotlin" );
1084+ KOTLIN (displayName = " Kotlin (experimental) " );
10851085
10861086 enum class OperatingSystem {
10871087 WINDOWS ,
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import java.io.File
1414import javax.swing.DefaultComboBoxModel
1515import javax.swing.JList
1616import org.utbot.common.PathUtil
17- import org.utbot.framework.plugin.api.CodegenLanguage
1817import org.utbot.intellij.plugin.models.GenerateTestsModel
1918import org.utbot.intellij.plugin.ui.utils.addDedicatedTestRoot
2019import org.utbot.intellij.plugin.ui.utils.suitableTestSourceRoots
@@ -46,7 +45,7 @@ class TestFolderComboWithBrowseButton(private val model: GenerateTestsModel) : C
4645 }
4746 }
4847
49- val testRoots = model.testModule.suitableTestSourceRoots(CodegenLanguage . JAVA ).toMutableList()
48+ val testRoots = model.testModule.suitableTestSourceRoots().toMutableList()
5049 model.testModule.addDedicatedTestRoot(testRoots)
5150 if (testRoots.isNotEmpty()) {
5251 configureRootsCombo(testRoots)
You can’t perform that action at this time.
0 commit comments