Add tests on different types of chain source

This commit is contained in:
Vitaliy.Bibaev
2017-11-24 14:59:50 +03:00
committed by Yan Zhulanow
parent 0d2c5c4d65
commit 14ef19418b
9 changed files with 104 additions and 0 deletions
@@ -0,0 +1,11 @@
package com.intellij.debugger.streams.kotlin.exec.collection
/**
* @author Vitaliy.Bibaev
*/
class DifferentSourceTest : CollectionTestCase("source") {
fun testCollectionAsSource() = doTestWithResult()
fun testStringAsSource() = doTestWithResult()
fun testArrayAsSource() = doTestWithResult()
fun testPrimitiveArrayAsSource() = doTestWithResult()
}