Add tests on filtering operations

This commit is contained in:
Vitaliy.Bibaev
2017-12-21 00:51:02 +03:00
committed by Yan Zhulanow
parent 22c455a01e
commit 5383ec50d2
21 changed files with 362 additions and 0 deletions
@@ -0,0 +1,18 @@
// 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
class FilterOperationsTest : OperationsTestCase("filter") {
fun testFilter() = doTestWithResult()
fun testFilterNot() = doTestWithResult()
fun testFilterIndexed() = doTestWithResult()
fun testFilterIsInstance() = doTestWithoutResult()
fun testDrop() = doTestWithResult()
fun testDropWhile() = doTestWithoutResult()
fun testMinus() = doTestWithResult()
fun testMinusElement() = doTestWithResult()
fun testTake() = doTestWithResult()
fun testTakeWhile() = doTestWithoutResult()
}