From 08ba697e8df59e51d977b2cc1be8da8240b3fabf Mon Sep 17 00:00:00 2001 From: Andrey Tarbeev Date: Tue, 27 Dec 2022 15:10:38 +0300 Subject: [PATCH] Fix error tests handling in reporting --- .../org/utbot/framework/codegen/reports/TestsGenerationReport.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/utbot-framework/src/main/kotlin/org/utbot/framework/codegen/reports/TestsGenerationReport.kt b/utbot-framework/src/main/kotlin/org/utbot/framework/codegen/reports/TestsGenerationReport.kt index 1f222cf94b..5933955616 100644 --- a/utbot-framework/src/main/kotlin/org/utbot/framework/codegen/reports/TestsGenerationReport.kt +++ b/utbot-framework/src/main/kotlin/org/utbot/framework/codegen/reports/TestsGenerationReport.kt @@ -53,6 +53,7 @@ data class TestsGenerationReport( } fun addMethodErrors(testSet: CgMethodTestSet, errors: Map) { + this.executables += testSet.executableId this.errors[testSet.executableId] = errors }