diff --git a/utbot-summary/src/main/kotlin/org/utbot/summary/Summarization.kt b/utbot-summary/src/main/kotlin/org/utbot/summary/Summarization.kt index d53f59b766..db03adf89b 100644 --- a/utbot-summary/src/main/kotlin/org/utbot/summary/Summarization.kt +++ b/utbot-summary/src/main/kotlin/org/utbot/summary/Summarization.kt @@ -283,14 +283,26 @@ class Summarization(val sourceFile: File?, val invokeDescriptions: List { + val clusteredExecutions = groupFuzzedExecutions(methodTestSet) + clusteredExecutions.forEach { + clustersToReturn.add( + UtExecutionCluster( + UtClusterInfo(it.header), + it.executions + ) + ) + } + } + MethodDescriptionSource.SYMBOLIC -> { + clustersToReturn.add( + UtExecutionCluster( + UtClusterInfo(), + methodTestSet.executions + ) ) - ) + } } }