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
5 * @author Vitaliy.Bibaev
7 class MiscIntermediateOperationsTest : StreamExTestCase() {
8 override val packageName: String = "misc"
10 fun testHeadTail() = doStreamExWithResultTest()
12 fun testChain() = doStreamExWithResultTest()
14 fun testSkipOrdered() = doStreamExWithResultTest()
16 fun testParallel() = doStreamExVoidTest()
18 fun testZipWithSameSizes() = doStreamExVoidTest()
19 fun testZipWithLesser() = doStreamExVoidTest()
20 fun testZipWithGreater() = doStreamExVoidTest()
22 fun testPrefix() = doStreamExVoidTest()
23 fun testPrefixKeys() = doStreamExVoidTest()
24 fun testPrefixValues() = doStreamExVoidTest()