Skip to content

Commit 0a0582e

Browse files
committed
More imports
1 parent 1ac9fcd commit 0a0582e

File tree

269 files changed

+220
-21738
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

269 files changed

+220
-21738
lines changed

utbot-framework-test/src/test/kotlin/org/utbot/examples/algorithms/CorrectBracketSequencesTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ import org.utbot.framework.plugin.api.DocCodeStmt
55
import org.utbot.framework.plugin.api.DocPreTagStatement
66
import org.utbot.framework.plugin.api.DocRegularStmt
77
import org.junit.jupiter.api.Test
8+
import org.utbot.examples.algorithms.CorrectBracketSequences.isBracket
9+
import org.utbot.examples.algorithms.CorrectBracketSequences.isOpen
810
import org.utbot.testcheckers.eq
11+
import org.utbot.testing.*
912

1013
internal class CorrectBracketSequencesTest : UtValueTestCaseChecker(
1114
testClass = CorrectBracketSequences::class,

utbot-framework-test/src/test/kotlin/org/utbot/examples/algorithms/GraphTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ package org.utbot.examples.algorithms
33
import org.junit.jupiter.api.Tag
44
import org.junit.jupiter.api.Test
55
import org.utbot.testcheckers.eq
6+
import org.utbot.testing.UtValueTestCaseChecker
7+
import org.utbot.testing.ignoreExecutionsNumber
8+
import org.utbot.testing.isException
69

710
internal class GraphTest : UtValueTestCaseChecker(testClass = GraphExample::class) {
811
@Test

utbot-framework-test/src/test/kotlin/org/utbot/examples/algorithms/SortTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import org.junit.jupiter.api.Test
88
import org.utbot.framework.plugin.api.CodegenLanguage
99
import org.utbot.testcheckers.eq
1010
import org.utbot.testcheckers.ge
11+
import org.utbot.testing.*
1112

1213
// TODO Kotlin mocks generics https://github.com/UnitTestBot/UTBotJava/issues/88
1314
internal class SortTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/arrays/ArrayOfObjectsTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import org.utbot.framework.plugin.api.CodegenLanguage
44
import org.junit.jupiter.api.Test
55
import org.utbot.testcheckers.eq
66
import org.utbot.testcheckers.ge
7+
import org.utbot.testing.*
78

89
// TODO failed Kotlin compilation SAT-1332
910
internal class ArrayOfObjectsTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/arrays/ArrayStoreExceptionExamplesTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ import org.junit.jupiter.api.Disabled
44
import org.junit.jupiter.api.Test
55
import org.utbot.framework.plugin.api.CodegenLanguage
66
import org.utbot.testcheckers.eq
7+
import org.utbot.testing.AtLeast
8+
import org.utbot.testing.CodeGeneration
9+
import org.utbot.testing.UtValueTestCaseChecker
10+
import org.utbot.testing.isException
711

812
class ArrayStoreExceptionExamplesTest : UtValueTestCaseChecker(
913
testClass = ArrayStoreExceptionExamples::class,

utbot-framework-test/src/test/kotlin/org/utbot/examples/arrays/IntArrayBasicsTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import org.utbot.framework.plugin.api.CodegenLanguage
55
import org.junit.jupiter.api.Test
66
import org.utbot.testcheckers.eq
77
import org.utbot.testcheckers.ge
8+
import org.utbot.testing.CodeGeneration
9+
import org.utbot.testing.UtValueTestCaseChecker
10+
import org.utbot.testing.ignoreExecutionsNumber
11+
import org.utbot.testing.isException
812

913
// TODO failed Kotlin compilation SAT-1332
1014
internal class IntArrayBasicsTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/casts/ArrayCastExampleTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import org.junit.jupiter.api.Disabled
44
import org.utbot.framework.plugin.api.CodegenLanguage
55
import org.junit.jupiter.api.Test
66
import org.utbot.testcheckers.eq
7+
import org.utbot.testing.CodeGeneration
8+
import org.utbot.testing.DoNotCalculate
9+
import org.utbot.testing.UtValueTestCaseChecker
710

811
// TODO failed Kotlin compilation (generics) SAT-1332
912
//TODO: SAT-1487 calculate coverage for all methods of this test class

utbot-framework-test/src/test/kotlin/org/utbot/examples/casts/CastExampleTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ package org.utbot.examples.casts
33
import org.utbot.framework.plugin.api.CodegenLanguage
44
import org.junit.jupiter.api.Test
55
import org.utbot.testcheckers.eq
6+
import org.utbot.testing.CodeGeneration
7+
import org.utbot.testing.DoNotCalculate
8+
import org.utbot.testing.UtValueTestCaseChecker
9+
import org.utbot.testing.isException
610

711
// TODO failed Kotlin compilation SAT-1332
812
internal class CastExampleTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/casts/GenericCastExampleTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ package org.utbot.examples.casts
33
import org.utbot.framework.plugin.api.CodegenLanguage
44
import org.junit.jupiter.api.Test
55
import org.utbot.testcheckers.eq
6+
import org.utbot.testing.CodeGeneration
7+
import org.utbot.testing.DoNotCalculate
8+
import org.utbot.testing.UtValueTestCaseChecker
9+
import org.utbot.testing.between
610

711
// TODO failed Kotlin compilation SAT-1332
812
internal class GenericCastExampleTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/casts/InstanceOfExampleTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import org.junit.jupiter.api.Disabled
55
import org.junit.jupiter.api.Test
66
import org.utbot.testcheckers.eq
77
import org.utbot.testcheckers.ge
8+
import org.utbot.testing.CodeGeneration
9+
import org.utbot.testing.DoNotCalculate
10+
import org.utbot.testing.UtValueTestCaseChecker
11+
import org.utbot.testing.ignoreExecutionsNumber
812

913
// TODO failed Kotlin compilation SAT-1332
1014
internal class InstanceOfExampleTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/ClassWithStaticAndInnerClassesTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ package org.utbot.examples.codegen
33
import org.junit.jupiter.api.Test
44
import org.utbot.framework.plugin.api.CodegenLanguage
55
import org.utbot.testcheckers.eq
6+
import org.utbot.testing.Compilation
7+
import org.utbot.testing.DoNotCalculate
8+
import org.utbot.testing.TestExecution
9+
import org.utbot.testing.UtValueTestCaseChecker
610

711
@Suppress("INACCESSIBLE_TYPE")
812
internal class ClassWithStaticAndInnerClassesTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/CodegenExampleTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import kotlin.reflect.full.functions
55
import org.junit.jupiter.api.Disabled
66
import org.junit.jupiter.api.Test
77
import org.utbot.testcheckers.withoutConcrete
8+
import org.utbot.testing.UtValueTestCaseChecker
89

910
internal class CodegenExampleTest : UtValueTestCaseChecker(testClass = CodegenExample::class) {
1011
@Test

utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/deepequals/ClassWithNullableFieldTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ package org.utbot.examples.codegen.deepequals
33
import org.junit.jupiter.api.Test
44
import org.utbot.framework.plugin.api.CodegenLanguage
55
import org.utbot.testcheckers.eq
6+
import org.utbot.testing.CodeGeneration
7+
import org.utbot.testing.DoNotCalculate
8+
import org.utbot.testing.UtValueTestCaseChecker
69

710
class ClassWithNullableFieldTest : UtValueTestCaseChecker(
811
testClass = ClassWithNullableField::class,

utbot-framework-test/src/test/kotlin/org/utbot/examples/codegen/deepequals/DeepEqualsTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import org.utbot.framework.plugin.api.CodegenLanguage
44
import org.junit.jupiter.api.Disabled
55
import org.junit.jupiter.api.Test
66
import org.utbot.testcheckers.eq
7+
import org.utbot.testing.CodeGeneration
8+
import org.utbot.testing.DoNotCalculate
9+
import org.utbot.testing.UtValueTestCaseChecker
710

811
// TODO failed Kotlin compilation (generics) SAT-1332
912
class DeepEqualsTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/CustomerExamplesTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import org.utbot.framework.plugin.api.FieldId
55
import org.utbot.framework.plugin.api.UtConcreteValue
66
import org.junit.jupiter.api.Test
77
import org.utbot.testcheckers.eq
8+
import org.utbot.testing.*
89

910
internal class CustomerExamplesTest: UtValueTestCaseChecker(
1011
testClass = CustomerExamples::class,

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/GenericListsExampleTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import org.utbot.framework.plugin.api.CodegenLanguage
44
import org.junit.jupiter.api.Disabled
55
import org.junit.jupiter.api.Test
66
import org.utbot.testcheckers.eq
7+
import org.utbot.testing.CodeGeneration
8+
import org.utbot.testing.DoNotCalculate
9+
import org.utbot.testing.UtValueTestCaseChecker
710

811
// TODO disabled tests should be fixes with SAT-1441
912
internal class GenericListsExampleTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/LinkedListsTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ package org.utbot.examples.collections
33
import org.utbot.framework.plugin.api.CodegenLanguage
44
import org.junit.jupiter.api.Test
55
import org.utbot.testcheckers.eq
6+
import org.utbot.testing.CodeGeneration
7+
import org.utbot.testing.DoNotCalculate
8+
import org.utbot.testing.UtValueTestCaseChecker
9+
import org.utbot.testing.isException
610

711
// TODO failed Kotlin compilation (generics) SAT-1332
812
internal class LinkedListsTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/ListIteratorsTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import org.utbot.framework.plugin.api.CodegenLanguage
55
import kotlin.math.min
66
import org.junit.jupiter.api.Test
77
import org.utbot.testcheckers.eq
8+
import org.utbot.testing.CodeGeneration
9+
import org.utbot.testing.DoNotCalculate
10+
import org.utbot.testing.UtValueTestCaseChecker
11+
import org.utbot.testing.ignoreExecutionsNumber
812

913
// TODO failed Kotlin compilation (generics) SAT-1332
1014
internal class ListIteratorsTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/ListWrapperReturnsVoidTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ import org.junit.jupiter.api.Disabled
44
import org.utbot.framework.plugin.api.CodegenLanguage
55
import org.junit.jupiter.api.Test
66
import org.utbot.testcheckers.eq
7+
import org.utbot.testing.CodeGeneration
8+
import org.utbot.testing.DoNotCalculate
9+
import org.utbot.testing.UtValueTestCaseChecker
10+
import org.utbot.testing.isException
711

812
// TODO failed Kotlin compilation ($ in function names, generics) SAT-1220 SAT-1332
913
@Disabled("Java 11 transition")

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/ListsPart2Test.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ package org.utbot.examples.collections
33
import org.junit.jupiter.api.Disabled
44
import org.utbot.framework.plugin.api.CodegenLanguage
55
import org.junit.jupiter.api.Test
6+
import org.utbot.testing.CodeGeneration
7+
import org.utbot.testing.UtValueTestCaseChecker
8+
import org.utbot.testing.ignoreExecutionsNumber
69

710
// TODO failed Kotlin compilation SAT-1332
811
@Disabled

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/ListsPart3Test.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import org.junit.jupiter.api.Disabled
55
import org.junit.jupiter.api.Test
66
import org.utbot.testcheckers.eq
77
import org.utbot.testcheckers.ge
8+
import org.utbot.testing.*
89

910
// TODO failed Kotlin compilation SAT-1332
1011
internal class ListsPart3Test : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/MapEntrySetTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import org.junit.jupiter.api.Disabled
55
import org.junit.jupiter.api.Test
66
import org.utbot.testcheckers.ge
77
import org.utbot.testcheckers.withPushingStateFromPathSelectorForConcrete
8+
import org.utbot.testing.*
89

910
// TODO failed Kotlin compilation SAT-1332
1011
class MapEntrySetTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/MapKeySetTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import org.utbot.testcheckers.eq
66
import org.utbot.testcheckers.ge
77
import org.utbot.testcheckers.withPushingStateFromPathSelectorForConcrete
88
import org.utbot.testcheckers.withoutMinimization
9+
import org.utbot.testing.*
910

1011
// TODO failed Kotlin compilation SAT-1332
1112
class MapKeySetTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/MapValuesTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import org.utbot.framework.plugin.api.CodegenLanguage
44
import org.junit.jupiter.api.Test
55
import org.utbot.testcheckers.ge
66
import org.utbot.testcheckers.withoutMinimization
7+
import org.utbot.testing.*
78

89
// TODO failed Kotlin compilation SAT-1332
910
class MapValuesTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/MapsPart1Test.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import org.utbot.testcheckers.ge
99
import org.utbot.testcheckers.withPushingStateFromPathSelectorForConcrete
1010
import org.utbot.testcheckers.withoutConcrete
1111
import org.utbot.testcheckers.withoutMinimization
12+
import org.utbot.testing.*
1213

1314
// TODO failed Kotlin compilation ($ in names, generics) SAT-1220 SAT-1332
1415
internal class MapsPart1Test : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/MapsPart2Test.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import org.junit.jupiter.api.Test
55
import org.utbot.testcheckers.ge
66
import org.utbot.testcheckers.withPushingStateFromPathSelectorForConcrete
77
import org.utbot.testcheckers.withoutMinimization
8+
import org.utbot.testing.CodeGeneration
9+
import org.utbot.testing.DoNotCalculate
10+
import org.utbot.testing.UtValueTestCaseChecker
11+
import org.utbot.testing.isException
812

913
// TODO failed Kotlin compilation ($ in names, generics) SAT-1220 SAT-1332
1014
internal class MapsPart2Test : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/OptionalsTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package org.utbot.examples.collections
33
import org.utbot.framework.plugin.api.CodegenLanguage
44
import org.junit.jupiter.api.Test
55
import org.utbot.testcheckers.eq
6+
import org.utbot.testing.*
67
import java.util.*
78

89
class OptionalsTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/SetIteratorsTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package org.utbot.examples.collections
33
import org.utbot.framework.plugin.api.CodegenLanguage
44
import org.junit.jupiter.api.Test
55
import org.utbot.testcheckers.ge
6+
import org.utbot.testing.*
67

78
// TODO failed Kotlin compilation SAT-1332
89
class SetIteratorsTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/collections/SetsTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import org.utbot.testcheckers.eq
77
import org.utbot.testcheckers.ge
88
import org.utbot.testcheckers.withPushingStateFromPathSelectorForConcrete
99
import org.utbot.testcheckers.withoutMinimization
10+
import org.utbot.testing.*
1011

1112
// TODO failed Kotlin compilation SAT-1332
1213
internal class SetsTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/controlflow/ConditionsTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ import org.utbot.framework.plugin.api.DocRegularStmt
66
import org.utbot.framework.plugin.api.DocStatement
77
import org.junit.jupiter.api.Test
88
import org.utbot.testcheckers.eq
9+
import org.utbot.testing.UtValueTestCaseChecker
10+
import org.utbot.testing.ignoreExecutionsNumber
11+
import org.utbot.testing.keyContain
12+
import org.utbot.testing.keyMatch
913

1014
internal class ConditionsTest : UtValueTestCaseChecker(testClass = Conditions::class) {
1115
@Test

utbot-framework-test/src/test/kotlin/org/utbot/examples/controlflow/CycleDependedConditionTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import org.utbot.framework.plugin.api.DocRegularStmt
66
import org.utbot.framework.plugin.api.DocStatement
77
import org.junit.jupiter.api.Test
88
import org.utbot.testcheckers.eq
9+
import org.utbot.testing.UtValueTestCaseChecker
10+
import org.utbot.testing.keyContain
11+
import org.utbot.testing.keyMatch
912

1013
internal class CycleDependedConditionTest : UtValueTestCaseChecker(testClass = CycleDependedCondition::class) {
1114
@Test

utbot-framework-test/src/test/kotlin/org/utbot/examples/controlflow/CyclesTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import org.utbot.framework.plugin.api.DocRegularStmt
66
import org.utbot.framework.plugin.api.DocStatement
77
import org.junit.jupiter.api.Test
88
import org.utbot.testcheckers.eq
9+
import org.utbot.testing.*
910

1011
internal class CyclesTest : UtValueTestCaseChecker(testClass = Cycles::class) {
1112
@Test

utbot-framework-test/src/test/kotlin/org/utbot/examples/controlflow/SwitchTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ import org.junit.jupiter.api.Test
1313
import org.utbot.testcheckers.eq
1414
import org.utbot.testcheckers.ge
1515
import org.utbot.testcheckers.withoutMinimization
16+
import org.utbot.testing.UtValueTestCaseChecker
17+
import org.utbot.testing.keyContain
18+
import org.utbot.testing.keyMatch
1619

1720
internal class SwitchTest : UtValueTestCaseChecker(testClass = Switch::class) {
1821
@Test

utbot-framework-test/src/test/kotlin/org/utbot/examples/enums/ClassWithEnumTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ import org.utbot.framework.plugin.api.util.jField
1010
import org.utbot.testcheckers.eq
1111
import org.utbot.testcheckers.withPushingStateFromPathSelectorForConcrete
1212
import org.utbot.testcheckers.withoutConcrete
13+
import org.utbot.testing.DoNotCalculate
14+
import org.utbot.testing.UtValueTestCaseChecker
15+
import org.utbot.testing.isException
1316

1417
class ClassWithEnumTest : UtValueTestCaseChecker(testClass = ClassWithEnum::class) {
1518
@Test

utbot-framework-test/src/test/kotlin/org/utbot/examples/enums/ComplexEnumExamplesTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ import org.utbot.examples.enums.ComplexEnumExamples.Color.GREEN
88
import org.utbot.examples.enums.ComplexEnumExamples.Color.RED
99
import org.utbot.framework.plugin.api.CodegenLanguage
1010
import org.utbot.testcheckers.eq
11+
import org.utbot.testing.CodeGeneration
12+
import org.utbot.testing.UtValueTestCaseChecker
13+
import org.utbot.testing.ignoreExecutionsNumber
1114

1215
class ComplexEnumExamplesTest : UtValueTestCaseChecker(
1316
testClass = ComplexEnumExamples::class,

utbot-framework-test/src/test/kotlin/org/utbot/examples/exceptions/ExceptionExamplesTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import org.utbot.framework.plugin.api.CodegenLanguage
44
import org.junit.jupiter.api.Test
55
import org.utbot.testcheckers.eq
66
import org.utbot.testcheckers.withoutConcrete
7+
import org.utbot.testing.*
78

89
internal class ExceptionExamplesTest : UtValueTestCaseChecker(
910
testClass = ExceptionExamples::class,

utbot-framework-test/src/test/kotlin/org/utbot/examples/invokes/InvokeExampleTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ package org.utbot.examples.invokes
22

33
import org.junit.jupiter.api.Test
44
import org.utbot.testcheckers.eq
5+
import org.utbot.testing.DoNotCalculate
6+
import org.utbot.testing.UtValueTestCaseChecker
7+
import org.utbot.testing.ignoreExecutionsNumber
8+
import org.utbot.testing.isException
59

610
internal class InvokeExampleTest : UtValueTestCaseChecker(testClass = InvokeExample::class) {
711
@Test

utbot-framework-test/src/test/kotlin/org/utbot/examples/invokes/NativeExampleTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import org.junit.jupiter.api.Tag
66
import org.junit.jupiter.api.Test
77
import org.utbot.testcheckers.eq
88
import org.utbot.testcheckers.ge
9+
import org.utbot.testing.UtValueTestCaseChecker
10+
import org.utbot.testing.atLeast
11+
import org.utbot.testing.ignoreExecutionsNumber
912

1013
internal class NativeExampleTest : UtValueTestCaseChecker(testClass = NativeExample::class) {
1114
@Test

utbot-framework-test/src/test/kotlin/org/utbot/examples/invokes/VirtualInvokeExampleTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ package org.utbot.examples.invokes
55
import java.lang.Boolean
66
import org.junit.jupiter.api.Test
77
import org.utbot.testcheckers.eq
8+
import org.utbot.testing.DoNotCalculate
9+
import org.utbot.testing.UtValueTestCaseChecker
10+
import org.utbot.testing.isException
811

912
internal class VirtualInvokeExampleTest : UtValueTestCaseChecker(testClass = VirtualInvokeExample::class) {
1013
@Test

utbot-framework-test/src/test/kotlin/org/utbot/examples/lambda/CustomPredicateExampleTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ package org.utbot.examples.lambda
33
import org.junit.jupiter.api.Test
44
import org.utbot.framework.plugin.api.CodegenLanguage
55
import org.utbot.testcheckers.eq
6+
import org.utbot.testing.CodeGeneration
7+
import org.utbot.testing.DoNotCalculate
8+
import org.utbot.testing.UtValueTestCaseChecker
9+
import org.utbot.testing.isException
610

711
class CustomPredicateExampleTest : UtValueTestCaseChecker(
812
testClass = CustomPredicateExample::class,

utbot-framework-test/src/test/kotlin/org/utbot/examples/lambda/SimpleLambdaExamplesTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ package org.utbot.examples.lambda
33
import org.junit.jupiter.api.Test
44
import org.utbot.framework.plugin.api.CodegenLanguage
55
import org.utbot.testcheckers.eq
6+
import org.utbot.testing.CodeGeneration
7+
import org.utbot.testing.DoNotCalculate
8+
import org.utbot.testing.UtValueTestCaseChecker
9+
import org.utbot.testing.isException
610

711
// TODO failed Kotlin compilation (generics) SAT-1332
812
class SimpleLambdaExamplesTest : UtValueTestCaseChecker(

0 commit comments

Comments
 (0)