Do not generate test cases for ignored tests

This commit is contained in:
Vitaliy.Bibaev
2018-06-08 13:01:54 +03:00
committed by Yan Zhulanow
parent 568a664491
commit 490f7bc3d7
3 changed files with 7 additions and 52 deletions
@@ -649,20 +649,19 @@ fun main(args: Array<String>) {
}
// Not supported yet
testClass<AbstractJavaStreamTraceTestCase> {
// model("debugger/tinyApp/src/streams/java")
}
// testClass<AbstractJavaStreamTraceTestCase> {
// model("debugger/tinyApp/src/streams/java")
// }
// testClass<AbstractCollectionTraceTestCase> {
// model("debugger/tinyApp/src/streams/collection")
// }
testClass<AbstractSequenceTraceTestCase> {
// We need to implement mapping logic for terminal operations
model("debugger/tinyApp/src/streams/sequence", excludeDirs = listOf("terminal"))
}
// Not supported yet
testClass<AbstractCollectionTraceTestCase> {
// model("debugger/tinyApp/src/streams/collection")
}
testClass<AbstractStubBuilderTest> {
model("stubs", extension = "kt")
}
@@ -1,22 +0,0 @@
/*
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.idea.debugger.sequence.exec;
import com.intellij.testFramework.TestDataPath;
import org.jetbrains.kotlin.test.JUnit3RunnerWithInners;
import org.jetbrains.kotlin.test.KotlinTestUtils;
import org.jetbrains.kotlin.test.TargetBackend;
import org.jetbrains.kotlin.test.TestMetadata;
import org.junit.runner.RunWith;
import java.io.File;
import java.util.regex.Pattern;
/** This class is generated by {@link org.jetbrains.kotlin.generators.tests.TestsPackage}. DO NOT MODIFY MANUALLY */
@SuppressWarnings("all")
@RunWith(JUnit3RunnerWithInners.class)
public class CollectionTraceTestCaseGenerated extends AbstractCollectionTraceTestCase {
}
@@ -1,22 +0,0 @@
/*
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.idea.debugger.sequence.exec;
import com.intellij.testFramework.TestDataPath;
import org.jetbrains.kotlin.test.JUnit3RunnerWithInners;
import org.jetbrains.kotlin.test.KotlinTestUtils;
import org.jetbrains.kotlin.test.TargetBackend;
import org.jetbrains.kotlin.test.TestMetadata;
import org.junit.runner.RunWith;
import java.io.File;
import java.util.regex.Pattern;
/** This class is generated by {@link org.jetbrains.kotlin.generators.tests.TestsPackage}. DO NOT MODIFY MANUALLY */
@SuppressWarnings("all")
@RunWith(JUnit3RunnerWithInners.class)
public class JavaStreamTraceTestCaseGenerated extends AbstractJavaStreamTraceTestCase {
}