@@ -3,7 +3,7 @@ package org.utbot.examples.strings11
3
3
import org.junit.jupiter.api.Test
4
4
import org.utbot.framework.plugin.api.CodegenLanguage
5
5
import org.utbot.testcheckers.eq
6
- import org.utbot.testcheckers.withoutConcrete
6
+ import org.utbot.testcheckers.withConcrete
7
7
import org.utbot.tests.infrastructure.*
8
8
9
9
class StringConcatTest : UtValueTestCaseChecker (
@@ -16,7 +16,7 @@ class StringConcatTest : UtValueTestCaseChecker(
16
16
) {
17
17
@Test
18
18
fun testConcatArguments () {
19
- withoutConcrete {
19
+ withConcrete(useConcreteExecution = false ) {
20
20
check(
21
21
StringConcat ::concatArguments,
22
22
eq(1 ),
@@ -27,7 +27,7 @@ class StringConcatTest : UtValueTestCaseChecker(
27
27
28
28
@Test
29
29
fun testConcatWithConstants () {
30
- withoutConcrete {
30
+ withConcrete(useConcreteExecution = false ) {
31
31
check(
32
32
StringConcat ::concatWithConstants,
33
33
eq(4 ),
@@ -41,7 +41,7 @@ class StringConcatTest : UtValueTestCaseChecker(
41
41
42
42
@Test
43
43
fun testConcatWithPrimitives () {
44
- withoutConcrete {
44
+ withConcrete(useConcreteExecution = false ) {
45
45
check(
46
46
StringConcat ::concatWithPrimitives,
47
47
eq(1 ),
@@ -52,7 +52,7 @@ class StringConcatTest : UtValueTestCaseChecker(
52
52
53
53
@Test
54
54
fun testExceptionInToString () {
55
- withoutConcrete {
55
+ withConcrete(useConcreteExecution = false ) {
56
56
checkWithException(
57
57
StringConcat ::exceptionInToString,
58
58
ignoreExecutionsNumber,
@@ -65,7 +65,7 @@ class StringConcatTest : UtValueTestCaseChecker(
65
65
66
66
@Test
67
67
fun testConcatWithField () {
68
- withoutConcrete {
68
+ withConcrete(useConcreteExecution = false ) {
69
69
checkWithThis(
70
70
StringConcat ::concatWithField,
71
71
eq(1 ),
@@ -76,7 +76,7 @@ class StringConcatTest : UtValueTestCaseChecker(
76
76
77
77
@Test
78
78
fun testConcatWithPrimitiveWrappers () {
79
- withoutConcrete {
79
+ withConcrete(useConcreteExecution = false ) {
80
80
check(
81
81
StringConcat ::concatWithPrimitiveWrappers,
82
82
ignoreExecutionsNumber,
@@ -89,7 +89,7 @@ class StringConcatTest : UtValueTestCaseChecker(
89
89
90
90
@Test
91
91
fun testSameConcat () {
92
- withoutConcrete {
92
+ withConcrete(useConcreteExecution = false ) {
93
93
check(
94
94
StringConcat ::sameConcat,
95
95
ignoreExecutionsNumber,
@@ -102,7 +102,7 @@ class StringConcatTest : UtValueTestCaseChecker(
102
102
103
103
@Test
104
104
fun testConcatStrangeSymbols () {
105
- withoutConcrete {
105
+ withConcrete(useConcreteExecution = false ) {
106
106
check(
107
107
StringConcat ::concatStrangeSymbols,
108
108
eq(1 ),
0 commit comments