From 0686781c9eba679b62d3b59ffcb26c8c7f61cbbe Mon Sep 17 00:00:00 2001 From: Andrey Tarbeev <54685068+sofurihafe@users.noreply.github.com> Date: Mon, 10 Jul 2023 17:41:17 +0300 Subject: [PATCH] Turn off Fuzzer in Spring unit tests --- .../utbot/intellij/plugin/generator/UtTestsDialogProcessor.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/UtTestsDialogProcessor.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/UtTestsDialogProcessor.kt index 14fbe938c6..d4a16a9cde 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/UtTestsDialogProcessor.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/UtTestsDialogProcessor.kt @@ -378,7 +378,7 @@ object UtTestsDialogProcessor { } val useFuzzing = when (model.projectType) { Spring -> when (model.springTestType) { - UNIT_TEST -> model.springSettings is AbsentSpringSettings + UNIT_TEST -> false INTEGRATION_TEST -> true }