diff --git a/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/Api.kt b/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/Api.kt index c8e6346fac..3bbde2ae02 100644 --- a/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/Api.kt +++ b/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/Api.kt @@ -499,7 +499,11 @@ data class UtClassRefModel( * - calculated field values (models) * - mocks for methods with return values * - [canHaveRedundantOrMissingMocks] flag, which is set to `true` for mocks - * created by fuzzer without knowing which methods will actually be called + * created by: + * - fuzzer which doesn't know which methods will actually be called + * - engine which also doesn't know which methods will actually be + * called during concrete execution that may be only **partially** + * backed up by the symbolic analysis * * [fields] contains non-static fields */ @@ -509,7 +513,7 @@ data class UtCompositeModel( val isMock: Boolean, val fields: MutableMap = mutableMapOf(), val mocks: MutableMap> = mutableMapOf(), - val canHaveRedundantOrMissingMocks: Boolean = false, + val canHaveRedundantOrMissingMocks: Boolean = true, ) : UtReferenceModel(id, classId) { //TODO: SAT-891 - rewrite toString() method override fun toString() = withToStringThreadLocalReentrancyGuard {