File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -502,7 +502,11 @@ data class UtClassRefModel(
502
502
* - calculated field values (models)
503
503
* - mocks for methods with return values
504
504
* - [canHaveRedundantOrMissingMocks] flag, which is set to `true` for mocks
505
- * created by fuzzer without knowing which methods will actually be called
505
+ * created by:
506
+ * - fuzzer which doesn't know which methods will actually be called
507
+ * - engine which also doesn't know which methods will actually be
508
+ * called during concrete execution that may be only **partially**
509
+ * backed up by the symbolic analysis
506
510
*
507
511
* [fields] contains non-static fields
508
512
*/
@@ -512,7 +516,7 @@ data class UtCompositeModel(
512
516
val isMock : Boolean ,
513
517
val fields : MutableMap <FieldId , UtModel > = mutableMapOf(),
514
518
val mocks : MutableMap <ExecutableId , List <UtModel >> = mutableMapOf(),
515
- val canHaveRedundantOrMissingMocks : Boolean = false ,
519
+ val canHaveRedundantOrMissingMocks : Boolean = true ,
516
520
) : UtReferenceModel(id, classId) {
517
521
// TODO: SAT-891 - rewrite toString() method
518
522
override fun toString () = withToStringThreadLocalReentrancyGuard {
You can’t perform that action at this time.
0 commit comments