Ignore kotlin collections execution tests
This commit is contained in:
committed by
Yan Zhulanow
parent
6cc797ad31
commit
8a026fd9cd
@@ -1,9 +1,12 @@
|
||||
// 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.collection
|
||||
|
||||
import org.junit.Ignore
|
||||
|
||||
/**
|
||||
* @author Vitaliy.Bibaev
|
||||
*/
|
||||
@Ignore("enable to test collection transform operations")
|
||||
class ChecksTest : CollectionTestCase("checks") {
|
||||
fun testAllMatchFalse() {
|
||||
doTestWithResult()
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
// 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.collection
|
||||
|
||||
import org.junit.Ignore
|
||||
|
||||
/**
|
||||
* @author Vitaliy.Bibaev
|
||||
*/
|
||||
@Ignore("enable to test collection transform operations")
|
||||
class DifferentSourceTest : CollectionTestCase("source") {
|
||||
fun testCollectionAsSource() = doTestWithResult()
|
||||
fun testStringAsSource() = doTestWithResult()
|
||||
|
||||
+3
@@ -1,9 +1,12 @@
|
||||
// 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.collection
|
||||
|
||||
import org.junit.Ignore
|
||||
|
||||
/**
|
||||
* @author Vitaliy.Bibaev
|
||||
*/
|
||||
@Ignore("enable to test collection transform operations")
|
||||
class DistinctOperationsTest : CollectionTestCase("distinct") {
|
||||
fun testDistinct() {
|
||||
doTestWithResult()
|
||||
|
||||
+3
@@ -1,9 +1,12 @@
|
||||
// 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.collection
|
||||
|
||||
import org.junit.Ignore
|
||||
|
||||
/**
|
||||
* @author Vitaliy.Bibaev
|
||||
*/
|
||||
@Ignore("enable to test collection transform operations")
|
||||
class FilterOperationsTest : CollectionTestCase("filter") {
|
||||
fun testFilterAsIntermediate() = doTestWithResult()
|
||||
fun testFilterAsTerminal() = doTestWithResult()
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
// 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.collection
|
||||
|
||||
import org.junit.Ignore
|
||||
|
||||
/**
|
||||
* @author Vitaliy.Bibaev
|
||||
*/
|
||||
@Ignore("enable to test collection transform operations")
|
||||
class FinalOperationsTest : CollectionTestCase("final") {
|
||||
fun testAverage() {
|
||||
doTestWithResult()
|
||||
|
||||
+3
@@ -1,9 +1,12 @@
|
||||
// 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.collection
|
||||
|
||||
import org.junit.Ignore
|
||||
|
||||
/**
|
||||
* @author Vitaliy.Bibaev
|
||||
*/
|
||||
@Ignore("enable to test collection transform operations")
|
||||
class FlatMapOperationsTest : CollectionTestCase("flatMap") {
|
||||
fun testFlatMap() {
|
||||
doTestWithResult()
|
||||
|
||||
+3
@@ -1,9 +1,12 @@
|
||||
// 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.collection
|
||||
|
||||
import org.junit.Ignore
|
||||
|
||||
/**
|
||||
* @author Vitaliy.Bibaev
|
||||
*/
|
||||
@Ignore("enable to test collection transform operations")
|
||||
class GroupingOperationsTest : CollectionTestCase("grouping") {
|
||||
fun testGroupBy() {
|
||||
doTestWithResult()
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
// 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.collection
|
||||
|
||||
import org.junit.Ignore
|
||||
|
||||
/**
|
||||
* @author Vitaliy.Bibaev
|
||||
*/
|
||||
@Ignore("enable to test collection transform operations")
|
||||
class MapOperationsTest : CollectionTestCase("map") {
|
||||
fun testMap() {
|
||||
doTestWithResult()
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
// 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.collection
|
||||
|
||||
import org.junit.Ignore
|
||||
|
||||
/**
|
||||
* @author Vitaliy.Bibaev
|
||||
*/
|
||||
@Ignore("enable to test collection transform operations")
|
||||
class MiscOperationsTest : CollectionTestCase("misc") {
|
||||
fun testIndexOf() {
|
||||
doTestWithResult()
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
// 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.collection
|
||||
|
||||
import org.junit.Ignore
|
||||
|
||||
/**
|
||||
* @author Vitaliy.Bibaev
|
||||
*/
|
||||
@Ignore("enable to test collection transform operations")
|
||||
class ZipOperationsTest : CollectionTestCase("zip") {
|
||||
fun testZipWithSame() {
|
||||
doTestWithResult()
|
||||
|
||||
Reference in New Issue
Block a user