src/jvm/main/org/jetbrains/kotlinx/lincheck/strategy/stress/StressStrategyConfiguration.kt [90:107]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun createStrategy( testClass: Class<*>, scenario: ExecutionScenario, validationFunction: Actor?, stateRepresentationMethod: Method? ): Strategy { val runner = ExecutionScenarioRunner( scenario = scenario, testClass = testClass, validationFunction = validationFunction, stateRepresentationFunction = stateRepresentationMethod, timeoutMs = timeoutMs, useClocks = UseClocks.RANDOM ) return StressStrategy(runner).also { runner.initializeStrategy(it) } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/jvm/main/org/jetbrains/lincheck/datastructures/StressOptions.kt [84:101]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun createStrategy( testClass: Class<*>, scenario: ExecutionScenario, validationFunction: Actor?, stateRepresentationMethod: Method? ): Strategy { val runner = ExecutionScenarioRunner( scenario = scenario, testClass = testClass, validationFunction = validationFunction, stateRepresentationFunction = stateRepresentationMethod, timeoutMs = timeoutMs, useClocks = UseClocks.RANDOM ) return StressStrategy(runner).also { runner.initializeStrategy(it) } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -