Add tests for misc operations

This commit is contained in:
Vitaliy.Bibaev
2017-12-21 15:37:04 +03:00
committed by Yan Zhulanow
parent 53209eaeec
commit d8bc73367f
25 changed files with 421 additions and 0 deletions
@@ -0,0 +1,26 @@
// 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.
package com.intellij.debugger.streams.kotlin.exec.sequence
/**
* @author Vitaliy.Bibaev
*/
class MiscOperationsTest : OperationsTestCase("misc") {
fun testConstrainOnce() = doTestWithResult()
fun testRequireNoNulls() = doTestWithResult()
fun testOnEach() = doTestWithResult()
fun testZipWithSame() = doTestWithResult()
fun testZipWithGreater() = doTestWithResult()
fun testZipWithLesser() = doTestWithResult()
fun testZipWithNextSingle() = doTestWithResult()
fun testZipWithNextMany() = doTestWithResult()
fun testChunked() = doTestWithResult()
fun testChunkedWithTransform() = doTestWithResult()
fun testWindowed() = doTestWithResult()
fun testWindowedWithPartial() = doTestWithResult()
}