Skip to content

Commit 8665433

Browse files
committed
Marked primitive stream tests as slow
1 parent 74cba30 commit 8665433

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

utbot-framework-test/src/test/kotlin/org/utbot/examples/stream/DoubleStreamExampleTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import java.util.stream.DoubleStream
1212
import kotlin.streams.toList
1313

1414
// TODO failed Kotlin compilation (generics) JIRA:1332
15-
//@Tag("slow") // we do not really need to always use this test in CI because it is almost the same as BaseStreamExampleTest
15+
@Tag("slow") // we do not really need to always use this test in CI because it is almost the same as BaseStreamExampleTest
1616
class DoubleStreamExampleTest : UtValueTestCaseChecker(
1717
testClass = DoubleStreamExample::class,
1818
testCodeGeneration = true,

utbot-framework-test/src/test/kotlin/org/utbot/examples/stream/IntStreamExampleTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import java.util.stream.IntStream
1313
import kotlin.streams.toList
1414

1515
// TODO failed Kotlin compilation (generics) JIRA:1332
16-
//@Tag("slow") // we do not really need to always use this test in CI because it is almost the same as BaseStreamExampleTest
16+
@Tag("slow") // we do not really need to always use this test in CI because it is almost the same as BaseStreamExampleTest
1717
class IntStreamExampleTest : UtValueTestCaseChecker(
1818
testClass = IntStreamExample::class,
1919
testCodeGeneration = true,

utbot-framework-test/src/test/kotlin/org/utbot/examples/stream/LongStreamExampleTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import java.util.stream.LongStream
1313
import kotlin.streams.toList
1414

1515
// TODO failed Kotlin compilation (generics) JIRA:1332
16-
//@Tag("slow") // we do not really need to always use this test in CI because it is almost the same as BaseStreamExampleTest
16+
@Tag("slow") // we do not really need to always use this test in CI because it is almost the same as BaseStreamExampleTest
1717
class LongStreamExampleTest : UtValueTestCaseChecker(
1818
testClass = LongStreamExample::class,
1919
testCodeGeneration = true,

0 commit comments

Comments
 (0)