Add tests for sorting operations
This commit is contained in:
committed by
Yan Zhulanow
parent
3114691a02
commit
fd17d9959a
+13
@@ -0,0 +1,13 @@
|
||||
// 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 SortingOperationsTest : OperationsTestCase("sort") {
|
||||
fun testSorted() = doTestWithResult()
|
||||
fun testSortedBy() = doTestWithResult()
|
||||
fun testSortedDescending() = doTestWithResult()
|
||||
fun testSortedByDescending() = doTestWithResult()
|
||||
fun testSortedWith() = doTestWithResult()
|
||||
}
|
||||
Reference in New Issue
Block a user