Skip to content

Commit 679573d

Browse files
committed
Disable parameterized test
1 parent ef583bf commit 679573d

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

utbot-framework-test/src/test/kotlin/org/utbot/examples/mixed/PrivateConstructorExampleTest.kt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,23 @@ package org.utbot.examples.mixed
33
import org.utbot.tests.infrastructure.UtValueTestCaseChecker
44
import org.utbot.tests.infrastructure.DoNotCalculate
55
import org.junit.jupiter.api.Test
6+
import org.utbot.framework.plugin.api.CodegenLanguage
67
import org.utbot.testcheckers.eq
8+
import org.utbot.tests.infrastructure.Compilation
79

8-
internal class PrivateConstructorExampleTest : UtValueTestCaseChecker(testClass = PrivateConstructorExample::class) {
10+
internal class PrivateConstructorExampleTest : UtValueTestCaseChecker(
11+
testClass = PrivateConstructorExample::class,
12+
pipelines = listOf(
13+
TestLastStage(
14+
CodegenLanguage.JAVA,
15+
parameterizedModeLastStage = Compilation
16+
),
17+
TestLastStage(
18+
CodegenLanguage.KOTLIN,
19+
parameterizedModeLastStage = Compilation
20+
)
21+
)
22+
) {
923

1024
/**
1125
* Two branches need to be covered:

0 commit comments

Comments
 (0)