We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ApplicationContext
TestCaseGenerator
1 parent 5f9233b commit 63a477fCopy full SHA for 63a477f
utbot-framework/src/main/kotlin/org/utbot/framework/plugin/api/TestCaseGenerator.kt
@@ -71,7 +71,12 @@ open class TestCaseGenerator(
71
val engineActions: MutableList<(UtBotSymbolicEngine) -> Unit> = mutableListOf(),
72
val isCanceled: () -> Boolean = { false },
73
val forceSootReload: Boolean = true,
74
- val applicationContext: ApplicationContext = SimpleApplicationContext(),
+ val applicationContext: ApplicationContext = SimpleApplicationContext(
75
+ SimpleMockerContext(
76
+ mockFrameworkInstalled = true,
77
+ staticsMockingIsConfigured = true
78
+ )
79
+ ),
80
) {
81
private val logger: KLogger = KotlinLogging.logger {}
82
private val timeoutLogger: KLogger = KotlinLogging.logger(logger.name + ".timeout")
0 commit comments