Do not generate test cases for ignored tests
This commit is contained in:
committed by
Yan Zhulanow
parent
568a664491
commit
490f7bc3d7
@@ -649,20 +649,19 @@ fun main(args: Array<String>) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Not supported yet
|
// Not supported yet
|
||||||
testClass<AbstractJavaStreamTraceTestCase> {
|
// testClass<AbstractJavaStreamTraceTestCase> {
|
||||||
// model("debugger/tinyApp/src/streams/java")
|
// model("debugger/tinyApp/src/streams/java")
|
||||||
}
|
// }
|
||||||
|
|
||||||
|
// testClass<AbstractCollectionTraceTestCase> {
|
||||||
|
// model("debugger/tinyApp/src/streams/collection")
|
||||||
|
// }
|
||||||
|
|
||||||
testClass<AbstractSequenceTraceTestCase> {
|
testClass<AbstractSequenceTraceTestCase> {
|
||||||
// We need to implement mapping logic for terminal operations
|
// We need to implement mapping logic for terminal operations
|
||||||
model("debugger/tinyApp/src/streams/sequence", excludeDirs = listOf("terminal"))
|
model("debugger/tinyApp/src/streams/sequence", excludeDirs = listOf("terminal"))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Not supported yet
|
|
||||||
testClass<AbstractCollectionTraceTestCase> {
|
|
||||||
// model("debugger/tinyApp/src/streams/collection")
|
|
||||||
}
|
|
||||||
|
|
||||||
testClass<AbstractStubBuilderTest> {
|
testClass<AbstractStubBuilderTest> {
|
||||||
model("stubs", extension = "kt")
|
model("stubs", extension = "kt")
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
-22
@@ -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 {
|
|
||||||
}
|
|
||||||
Generated
-22
@@ -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 {
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user