File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
utbot-framework-test/src/test/kotlin/org/utbot/examples/mixed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,23 @@ package org.utbot.examples.mixed
3
3
import org.utbot.tests.infrastructure.UtValueTestCaseChecker
4
4
import org.utbot.tests.infrastructure.DoNotCalculate
5
5
import org.junit.jupiter.api.Test
6
+ import org.utbot.framework.plugin.api.CodegenLanguage
6
7
import org.utbot.testcheckers.eq
8
+ import org.utbot.tests.infrastructure.Compilation
7
9
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
+ ) {
9
23
10
24
/* *
11
25
* Two branches need to be covered:
You can’t perform that action at this time.
0 commit comments