@@ -3,7 +3,7 @@ package org.utbot.examples.strings11
33import org.junit.jupiter.api.Test
44import org.utbot.framework.plugin.api.CodegenLanguage
55import org.utbot.testcheckers.eq
6- import org.utbot.testcheckers.withoutConcrete
6+ import org.utbot.testcheckers.withConcrete
77import org.utbot.tests.infrastructure.*
88
99class StringConcatTest : UtValueTestCaseChecker (
@@ -16,7 +16,7 @@ class StringConcatTest : UtValueTestCaseChecker(
1616) {
1717 @Test
1818 fun testConcatArguments () {
19- withoutConcrete {
19+ withConcrete(useConcreteExecution = false ) {
2020 check(
2121 StringConcat ::concatArguments,
2222 eq(1 ),
@@ -27,7 +27,7 @@ class StringConcatTest : UtValueTestCaseChecker(
2727
2828 @Test
2929 fun testConcatWithConstants () {
30- withoutConcrete {
30+ withConcrete(useConcreteExecution = false ) {
3131 check(
3232 StringConcat ::concatWithConstants,
3333 eq(4 ),
@@ -41,7 +41,7 @@ class StringConcatTest : UtValueTestCaseChecker(
4141
4242 @Test
4343 fun testConcatWithPrimitives () {
44- withoutConcrete {
44+ withConcrete(useConcreteExecution = false ) {
4545 check(
4646 StringConcat ::concatWithPrimitives,
4747 eq(1 ),
@@ -52,7 +52,7 @@ class StringConcatTest : UtValueTestCaseChecker(
5252
5353 @Test
5454 fun testExceptionInToString () {
55- withoutConcrete {
55+ withConcrete(useConcreteExecution = false ) {
5656 checkWithException(
5757 StringConcat ::exceptionInToString,
5858 ignoreExecutionsNumber,
@@ -65,7 +65,7 @@ class StringConcatTest : UtValueTestCaseChecker(
6565
6666 @Test
6767 fun testConcatWithField () {
68- withoutConcrete {
68+ withConcrete(useConcreteExecution = false ) {
6969 checkWithThis(
7070 StringConcat ::concatWithField,
7171 eq(1 ),
@@ -76,7 +76,7 @@ class StringConcatTest : UtValueTestCaseChecker(
7676
7777 @Test
7878 fun testConcatWithPrimitiveWrappers () {
79- withoutConcrete {
79+ withConcrete(useConcreteExecution = false ) {
8080 check(
8181 StringConcat ::concatWithPrimitiveWrappers,
8282 ignoreExecutionsNumber,
@@ -89,7 +89,7 @@ class StringConcatTest : UtValueTestCaseChecker(
8989
9090 @Test
9191 fun testSameConcat () {
92- withoutConcrete {
92+ withConcrete(useConcreteExecution = false ) {
9393 check(
9494 StringConcat ::sameConcat,
9595 ignoreExecutionsNumber,
@@ -102,7 +102,7 @@ class StringConcatTest : UtValueTestCaseChecker(
102102
103103 @Test
104104 fun testConcatStrangeSymbols () {
105- withoutConcrete {
105+ withConcrete(useConcreteExecution = false ) {
106106 check(
107107 StringConcat ::concatStrangeSymbols,
108108 eq(1 ),
0 commit comments