Ignore reflection usage warnings in outputs for streamex tests
[idea/community.git] / plugins / stream-debugger / test / com / intellij / debugger / streams / exec / streamex / MiscIntermediateOperationsTest.kt
1 // Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
2 package com.intellij.debugger.streams.exec.streamex
3
4 /**
5  * @author Vitaliy.Bibaev
6  */
7 class MiscIntermediateOperationsTest : StreamExTestCase() {
8   override val packageName: String = "misc"
9
10   fun testHeadTail() = doStreamExWithResultTest()
11
12   fun testChain() = doStreamExWithResultTest()
13
14   fun testSkipOrdered() = doStreamExWithResultTest()
15
16   fun testParallel() = doStreamExVoidTest()
17
18   fun testZipWithSameSizes() = doStreamExVoidTest()
19   fun testZipWithLesser() = doStreamExVoidTest()
20   fun testZipWithGreater() = doStreamExVoidTest()
21
22   fun testPrefix() = doStreamExVoidTest()
23   fun testPrefixKeys() = doStreamExVoidTest()
24   fun testPrefixValues() = doStreamExVoidTest()
25 }