Add tests on filtering operations
This commit is contained in:
committed by
Yan Zhulanow
parent
22c455a01e
commit
5383ec50d2
@@ -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()
|
||||
}
|
||||
Reference in New Issue
Block a user