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(
1081
1081
@Suppress(" unused" ) override val description : String = " Generate unit tests in $displayName "
1082
1082
) : CodeGenerationSettingItem {
1083
1083
JAVA (displayName = " Java" ),
1084
- KOTLIN (displayName = " Kotlin" );
1084
+ KOTLIN (displayName = " Kotlin (experimental) " );
1085
1085
1086
1086
enum class OperatingSystem {
1087
1087
WINDOWS ,
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import java.io.File
14
14
import javax.swing.DefaultComboBoxModel
15
15
import javax.swing.JList
16
16
import org.utbot.common.PathUtil
17
- import org.utbot.framework.plugin.api.CodegenLanguage
18
17
import org.utbot.intellij.plugin.models.GenerateTestsModel
19
18
import org.utbot.intellij.plugin.ui.utils.addDedicatedTestRoot
20
19
import org.utbot.intellij.plugin.ui.utils.suitableTestSourceRoots
@@ -46,7 +45,7 @@ class TestFolderComboWithBrowseButton(private val model: GenerateTestsModel) : C
46
45
}
47
46
}
48
47
49
- val testRoots = model.testModule.suitableTestSourceRoots(CodegenLanguage . JAVA ).toMutableList()
48
+ val testRoots = model.testModule.suitableTestSourceRoots().toMutableList()
50
49
model.testModule.addDedicatedTestRoot(testRoots)
51
50
if (testRoots.isNotEmpty()) {
52
51
configureRootsCombo(testRoots)
You can’t perform that action at this time.
0 commit comments