We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2883ee commit 6c7427fCopy full SHA for 6c7427f
utbot-framework/src/test/kotlin/org/utbot/framework/codegen/TestCodeGeneratorPipeline.kt
@@ -107,7 +107,7 @@ class TestCodeGeneratorPipeline(private val testFrameworkConfiguration: TestFram
107
if (isParametrizedAndMocked) 0
108
else when (parametrizedTestSource) {
109
ParametrizedTestSource.DO_NOT_PARAMETRIZE -> testSets.sumOf { it.executions.size }
110
- ParametrizedTestSource.PARAMETRIZE -> testSets.size
+ ParametrizedTestSource.PARAMETRIZE -> testSets.filter { it.executions.isNotEmpty() }.size
111
}
112
113
// check for error in the generated file
0 commit comments