Skip to content

Commit 130f598

Browse files
committed
Disabled Kotlin execution for the new test
1 parent f5d558a commit 130f598

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/modifiers/ClassWithPrivateMutableFieldOfPrivateTypeTest.kt

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,22 @@ package org.utbot.examples.codegen.modifiers
22

33
import org.junit.jupiter.api.Test
44
import org.utbot.common.withAccessibility
5+
import org.utbot.framework.plugin.api.CodegenLanguage
56
import org.utbot.framework.plugin.api.FieldId
67
import org.utbot.framework.plugin.api.util.id
78
import org.utbot.framework.plugin.api.util.jField
89
import org.utbot.testcheckers.eq
10+
import org.utbot.tests.infrastructure.Compilation
911
import org.utbot.tests.infrastructure.UtValueTestCaseChecker
1012

13+
// TODO failed Kotlin tests execution with non-nullable expected field
1114
class ClassWithPrivateMutableFieldOfPrivateTypeTest : UtValueTestCaseChecker(
12-
testClass = ClassWithPrivateMutableFieldOfPrivateType::class
15+
testClass = ClassWithPrivateMutableFieldOfPrivateType::class,
16+
testCodeGeneration = true,
17+
languagePipelines = listOf(
18+
CodeGenerationLanguageLastStage(CodegenLanguage.JAVA),
19+
CodeGenerationLanguageLastStage(CodegenLanguage.KOTLIN, Compilation)
20+
)
1321
) {
1422
@Test
1523
fun testChangePrivateMutableFieldWithPrivateType() {

0 commit comments

Comments
 (0)