Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Disabled Kotlin execution for the new test
  • Loading branch information
Damtev committed Oct 7, 2022
commit 130f598872ced00010ac76744a63e3b4aaf285c0
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,22 @@ package org.utbot.examples.codegen.modifiers

import org.junit.jupiter.api.Test
import org.utbot.common.withAccessibility
import org.utbot.framework.plugin.api.CodegenLanguage
import org.utbot.framework.plugin.api.FieldId
import org.utbot.framework.plugin.api.util.id
import org.utbot.framework.plugin.api.util.jField
import org.utbot.testcheckers.eq
import org.utbot.tests.infrastructure.Compilation
import org.utbot.tests.infrastructure.UtValueTestCaseChecker

// TODO failed Kotlin tests execution with non-nullable expected field
class ClassWithPrivateMutableFieldOfPrivateTypeTest : UtValueTestCaseChecker(
testClass = ClassWithPrivateMutableFieldOfPrivateType::class
testClass = ClassWithPrivateMutableFieldOfPrivateType::class,
testCodeGeneration = true,
languagePipelines = listOf(
CodeGenerationLanguageLastStage(CodegenLanguage.JAVA),
CodeGenerationLanguageLastStage(CodegenLanguage.KOTLIN, Compilation)
)
) {
@Test
fun testChangePrivateMutableFieldWithPrivateType() {
Expand Down