From 59ebf138e37796101be8d1d660c043a976507eeb Mon Sep 17 00:00:00 2001 From: "Artemii.Kononov" Date: Mon, 16 Jan 2023 18:29:20 +0300 Subject: [PATCH] [contest-estimator] Turn off sandbox as it breaks class loading in case of exception in static constructor. Fix 1665 Possible fix 1650 - split issues in case --- utbot-junit-contest/src/main/kotlin/org/utbot/contest/Contest.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/utbot-junit-contest/src/main/kotlin/org/utbot/contest/Contest.kt b/utbot-junit-contest/src/main/kotlin/org/utbot/contest/Contest.kt index 2b913dd9d5..658794141a 100644 --- a/utbot-junit-contest/src/main/kotlin/org/utbot/contest/Contest.kt +++ b/utbot-junit-contest/src/main/kotlin/org/utbot/contest/Contest.kt @@ -170,6 +170,7 @@ fun setOptions() { UtSettings.testMinimizationStrategyType = TestSelectionStrategyType.COVERAGE_STRATEGY UtSettings.ignoreStringLiterals = true UtSettings.maximizeCoverageUsingReflection = true + UtSettings.useSandbox = false }