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. // 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 package com.intellij.debugger.streams.kotlin.exec.collection
import org.junit.Ignore
/** /**
* @author Vitaliy.Bibaev * @author Vitaliy.Bibaev
*/ */
@Ignore("enable to test collection transform operations")
class ChecksTest : CollectionTestCase("checks") { class ChecksTest : CollectionTestCase("checks") {
fun testAllMatchFalse() { fun testAllMatchFalse() {
doTestWithResult() 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. // 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 package com.intellij.debugger.streams.kotlin.exec.collection
import org.junit.Ignore
/** /**
* @author Vitaliy.Bibaev * @author Vitaliy.Bibaev
*/ */
@Ignore("enable to test collection transform operations")
class DifferentSourceTest : CollectionTestCase("source") { class DifferentSourceTest : CollectionTestCase("source") {
fun testCollectionAsSource() = doTestWithResult() fun testCollectionAsSource() = doTestWithResult()
fun testStringAsSource() = 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. // 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 package com.intellij.debugger.streams.kotlin.exec.collection
import org.junit.Ignore
/** /**
* @author Vitaliy.Bibaev * @author Vitaliy.Bibaev
*/ */
@Ignore("enable to test collection transform operations")
class DistinctOperationsTest : CollectionTestCase("distinct") { class DistinctOperationsTest : CollectionTestCase("distinct") {
fun testDistinct() { fun testDistinct() {
doTestWithResult() 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. // 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 package com.intellij.debugger.streams.kotlin.exec.collection
import org.junit.Ignore
/** /**
* @author Vitaliy.Bibaev * @author Vitaliy.Bibaev
*/ */
@Ignore("enable to test collection transform operations")
class FilterOperationsTest : CollectionTestCase("filter") { class FilterOperationsTest : CollectionTestCase("filter") {
fun testFilterAsIntermediate() = doTestWithResult() fun testFilterAsIntermediate() = doTestWithResult()
fun testFilterAsTerminal() = 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. // 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 package com.intellij.debugger.streams.kotlin.exec.collection
import org.junit.Ignore
/** /**
* @author Vitaliy.Bibaev * @author Vitaliy.Bibaev
*/ */
@Ignore("enable to test collection transform operations")
class FinalOperationsTest : CollectionTestCase("final") { class FinalOperationsTest : CollectionTestCase("final") {
fun testAverage() { fun testAverage() {
doTestWithResult() 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. // 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 package com.intellij.debugger.streams.kotlin.exec.collection
import org.junit.Ignore
/** /**
* @author Vitaliy.Bibaev * @author Vitaliy.Bibaev
*/ */
@Ignore("enable to test collection transform operations")
class FlatMapOperationsTest : CollectionTestCase("flatMap") { class FlatMapOperationsTest : CollectionTestCase("flatMap") {
fun testFlatMap() { fun testFlatMap() {
doTestWithResult() 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. // 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 package com.intellij.debugger.streams.kotlin.exec.collection
import org.junit.Ignore
/** /**
* @author Vitaliy.Bibaev * @author Vitaliy.Bibaev
*/ */
@Ignore("enable to test collection transform operations")
class GroupingOperationsTest : CollectionTestCase("grouping") { class GroupingOperationsTest : CollectionTestCase("grouping") {
fun testGroupBy() { fun testGroupBy() {
doTestWithResult() 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. // 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 package com.intellij.debugger.streams.kotlin.exec.collection
import org.junit.Ignore
/** /**
* @author Vitaliy.Bibaev * @author Vitaliy.Bibaev
*/ */
@Ignore("enable to test collection transform operations")
class MapOperationsTest : CollectionTestCase("map") { class MapOperationsTest : CollectionTestCase("map") {
fun testMap() { fun testMap() {
doTestWithResult() 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. // 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 package com.intellij.debugger.streams.kotlin.exec.collection
import org.junit.Ignore
/** /**
* @author Vitaliy.Bibaev * @author Vitaliy.Bibaev
*/ */
@Ignore("enable to test collection transform operations")
class MiscOperationsTest : CollectionTestCase("misc") { class MiscOperationsTest : CollectionTestCase("misc") {
fun testIndexOf() { fun testIndexOf() {
doTestWithResult() 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. // 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 package com.intellij.debugger.streams.kotlin.exec.collection
import org.junit.Ignore
/** /**
* @author Vitaliy.Bibaev * @author Vitaliy.Bibaev
*/ */
@Ignore("enable to test collection transform operations")
class ZipOperationsTest : CollectionTestCase("zip") { class ZipOperationsTest : CollectionTestCase("zip") {
fun testZipWithSame() { fun testZipWithSame() {
doTestWithResult() doTestWithResult()