Skip to content
Prev Previous commit
Next Next commit
Fixed rebase errors
  • Loading branch information
Damtev committed Oct 28, 2022
commit a8d1f92bdfc42c80dcbc21093926a49c2bb7441a
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package org.utbot.examples.strings11
import org.junit.jupiter.api.Test
import org.utbot.framework.plugin.api.CodegenLanguage
import org.utbot.testcheckers.eq
import org.utbot.testcheckers.withoutConcrete
import org.utbot.testcheckers.withConcrete
import org.utbot.tests.infrastructure.*

class StringConcatTest : UtValueTestCaseChecker(
Expand All @@ -16,7 +16,7 @@ class StringConcatTest : UtValueTestCaseChecker(
) {
@Test
fun testConcatArguments() {
withoutConcrete {
withConcrete(useConcreteExecution = false) {
check(
StringConcat::concatArguments,
eq(1),
Expand All @@ -27,7 +27,7 @@ class StringConcatTest : UtValueTestCaseChecker(

@Test
fun testConcatWithConstants() {
withoutConcrete {
withConcrete(useConcreteExecution = false) {
check(
StringConcat::concatWithConstants,
eq(4),
Expand All @@ -41,7 +41,7 @@ class StringConcatTest : UtValueTestCaseChecker(

@Test
fun testConcatWithPrimitives() {
withoutConcrete {
withConcrete(useConcreteExecution = false) {
check(
StringConcat::concatWithPrimitives,
eq(1),
Expand All @@ -52,7 +52,7 @@ class StringConcatTest : UtValueTestCaseChecker(

@Test
fun testExceptionInToString() {
withoutConcrete {
withConcrete(useConcreteExecution = false) {
checkWithException(
StringConcat::exceptionInToString,
ignoreExecutionsNumber,
Expand All @@ -65,7 +65,7 @@ class StringConcatTest : UtValueTestCaseChecker(

@Test
fun testConcatWithField() {
withoutConcrete {
withConcrete(useConcreteExecution = false) {
checkWithThis(
StringConcat::concatWithField,
eq(1),
Expand All @@ -76,7 +76,7 @@ class StringConcatTest : UtValueTestCaseChecker(

@Test
fun testConcatWithPrimitiveWrappers() {
withoutConcrete {
withConcrete(useConcreteExecution = false) {
check(
StringConcat::concatWithPrimitiveWrappers,
ignoreExecutionsNumber,
Expand All @@ -89,7 +89,7 @@ class StringConcatTest : UtValueTestCaseChecker(

@Test
fun testSameConcat() {
withoutConcrete {
withConcrete(useConcreteExecution = false) {
check(
StringConcat::sameConcat,
ignoreExecutionsNumber,
Expand All @@ -102,7 +102,7 @@ class StringConcatTest : UtValueTestCaseChecker(

@Test
fun testConcatStrangeSymbols() {
withoutConcrete {
withConcrete(useConcreteExecution = false) {
check(
StringConcat::concatStrangeSymbols,
eq(1),
Expand Down