Ignore kotlin collections execution tests

This commit is contained in:
Vitaliy.Bibaev
2017-12-19 20:00:10 +03:00
committed by Yan Zhulanow
parent 6cc797ad31
commit 8a026fd9cd
10 changed files with 30 additions and 0 deletions
@@ -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()
@@ -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()
@@ -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()
@@ -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()
@@ -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()