Add tests for misc operations
This commit is contained in:
committed by
Yan Zhulanow
parent
53209eaeec
commit
d8bc73367f
@@ -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()
|
||||
}
|
||||
Reference in New Issue
Block a user