Add tests for distinct operations

This commit is contained in:
Vitaliy.Bibaev
2017-12-21 11:44:40 +03:00
committed by Yan Zhulanow
parent 113bb9ca46
commit d30a3b2495
7 changed files with 113 additions and 0 deletions
@@ -0,0 +1,11 @@
// 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 DistinctOperationsTest : OperationsTestCase("distinct") {
fun testDistinct() = doTestWithResult()
fun testDistinctObjects() = doTestWithResult()
fun testDistinctBy() = doTestWithResult()
}