From 822840e7cc53ff196fa036970349f1a2268435c9 Mon Sep 17 00:00:00 2001 From: Egor Kulikov Date: Thu, 10 Nov 2022 11:32:37 +0300 Subject: [PATCH 1/3] Enable MockStaticMethodExampleTest --- .../org/utbot/examples/mock/MockStaticMethodExampleTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-framework-test/src/test/kotlin/org/utbot/examples/mock/MockStaticMethodExampleTest.kt b/utbot-framework-test/src/test/kotlin/org/utbot/examples/mock/MockStaticMethodExampleTest.kt index fcdbf694ad..fc7beb513e 100644 --- a/utbot-framework-test/src/test/kotlin/org/utbot/examples/mock/MockStaticMethodExampleTest.kt +++ b/utbot-framework-test/src/test/kotlin/org/utbot/examples/mock/MockStaticMethodExampleTest.kt @@ -19,7 +19,7 @@ internal class MockStaticMethodExampleTest : UtValueTestCaseChecker( testClass = MockStaticMethodExample::class, testCodeGeneration = true, pipelines = listOf( - TestLastStage(CodegenLanguage.JAVA, lastStage = TestExecution, parameterizedModeLastStage = Compilation), + TestLastStage(CodegenLanguage.JAVA, lastStage = TestExecution), TestLastStage(CodegenLanguage.KOTLIN, lastStage = CodeGeneration) ) ) { From 69d3c9c4f721c76847bc31dc555f6c5197d7d46f Mon Sep 17 00:00:00 2001 From: Egor Kulikov Date: Thu, 10 Nov 2022 12:09:48 +0300 Subject: [PATCH 2/3] Enable ClassWithStaticAndInnerClassesTest --- .../examples/codegen/ClassWithStaticAndInnerClassesTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt b/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt index 0f9f32fdb7..3869b3ccc0 100644 --- a/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt +++ b/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt @@ -12,7 +12,7 @@ import org.utbot.tests.infrastructure.TestExecution internal class ClassWithStaticAndInnerClassesTest : UtValueTestCaseChecker( testClass = ClassWithStaticAndInnerClasses::class, pipelines = listOf( - TestLastStage(CodegenLanguage.JAVA, lastStage = TestExecution, parameterizedModeLastStage = Compilation), + TestLastStage(CodegenLanguage.JAVA, lastStage = TestExecution), TestLastStage(CodegenLanguage.KOTLIN, lastStage = TestExecution) ) ) { From fe6ff0239a245833967e191fe507060840a9c9a4 Mon Sep 17 00:00:00 2001 From: Egor Kulikov Date: Thu, 10 Nov 2022 12:58:33 +0300 Subject: [PATCH 3/3] Little cleanup --- .../examples/codegen/ClassWithStaticAndInnerClassesTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt b/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt index 3869b3ccc0..8b645afee8 100644 --- a/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt +++ b/utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt @@ -12,8 +12,8 @@ import org.utbot.tests.infrastructure.TestExecution internal class ClassWithStaticAndInnerClassesTest : UtValueTestCaseChecker( testClass = ClassWithStaticAndInnerClasses::class, pipelines = listOf( - TestLastStage(CodegenLanguage.JAVA, lastStage = TestExecution), - TestLastStage(CodegenLanguage.KOTLIN, lastStage = TestExecution) + TestLastStage(CodegenLanguage.JAVA), + TestLastStage(CodegenLanguage.KOTLIN) ) ) { @Test