[TEST] Inherit UpdateConfigurationQuickFixTest from KotlinLightPlatformCodeInsightFixtureTestCase

This is needed for proper test muting
This commit is contained in:
Dmitriy Novozhilov
2020-11-30 13:47:07 +03:00
parent 7d9eeb6847
commit c43db2ee8d
2 changed files with 9 additions and 1 deletions
@@ -10,10 +10,17 @@ import com.intellij.testFramework.fixtures.LightPlatformCodeInsightFixtureTestCa
import com.intellij.util.ThrowableRunnable
import org.jetbrains.kotlin.test.KotlinTestUtils
import org.jetbrains.kotlin.test.TestMetadata
import org.jetbrains.kotlin.test.WithMutedInDatabaseRunTest
import org.jetbrains.kotlin.test.runTest
import java.io.File
import kotlin.reflect.full.findAnnotation
@WithMutedInDatabaseRunTest
abstract class KotlinLightPlatformCodeInsightFixtureTestCase : LightPlatformCodeInsightFixtureTestCase() {
override fun runTest() {
runTest { super.runTest() }
}
protected open fun isFirPlugin(): Boolean = false
override fun setUp() {
super.setUp()