File tree Expand file tree Collapse file tree
utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings Expand file tree Collapse file tree Original file line number Diff line number Diff 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" )
You can’t perform that action at this time.
0 commit comments