201: Mute a lot of tests with enums

This commit is contained in:
Nikolay Krasko
2020-02-25 16:47:22 +03:00
parent 79e663828a
commit 8501ea78c8
2 changed files with 19 additions and 1 deletions
@@ -14,6 +14,7 @@ import com.intellij.psi.PsiManager
import com.intellij.rt.execution.junit.FileComparisonFailure
import junit.framework.TestCase
import org.jetbrains.kotlin.test.IdeaSystemPropertiesForParallelRunConfigurator
import org.jetbrains.kotlin.test.runTest
import org.jetbrains.uast.UastContext
import org.jetbrains.uast.UastLanguagePlugin
import org.jetbrains.uast.evaluation.UEvaluatorExtension
@@ -48,6 +49,10 @@ abstract class AbstractTestWithCoreEnvironment : TestCase() {
disposeEnvironment()
}
override fun runTest() {
runTest { super.runTest() }
}
protected abstract fun createEnvironment(source: File): AbstractCoreEnvironment
protected fun initializeEnvironment(source: File) {