Skip to content

Commit 9a52264

Browse files
committed
Reorder taint analysis check box with others
1 parent c0e71ce commit 9a52264

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ class SettingsWindow(val project: Project) {
8181
contextHelp("Enable JavaScript and Python if IDE supports them")
8282
}.bottomGap(BottomGap.MEDIUM)
8383

84+
row("Tests with exceptions:") {
85+
createCombo(RuntimeExceptionTestsBehaviour::class, RuntimeExceptionTestsBehaviour.values())
86+
}
87+
row("Overflow detection:") {
88+
createCombo(TreatOverflowAsError::class, TreatOverflowAsError.values())
89+
}
8490
row {
8591
useTaintAnalysisCheckBox =
8692
checkBox("Use taint analysis")
@@ -96,13 +102,6 @@ class SettingsWindow(val project: Project) {
96102
.component
97103
contextHelp("Experimental taint analysis support")
98104
}
99-
100-
row("Tests with exceptions:") {
101-
createCombo(RuntimeExceptionTestsBehaviour::class, RuntimeExceptionTestsBehaviour.values())
102-
}
103-
row("Overflow detection:") {
104-
createCombo(TreatOverflowAsError::class, TreatOverflowAsError.values())
105-
}
106105
row {
107106
runInspectionAfterTestGenerationCheckBox =
108107
checkBox("Display detected errors on the Problems tool window")

0 commit comments

Comments
 (0)