dad9958adf
Path to test data file should be relative to test data directory
25 lines
892 B
Plaintext
25 lines
892 B
Plaintext
/*
|
|
* Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
|
* 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.checkers;
|
|
|
|
import com.intellij.testFramework.LightProjectDescriptor;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.kotlin.idea.test.KotlinLightCodeInsightFixtureTestCase;
|
|
import org.jetbrains.kotlin.idea.test.KotlinStdJSProjectDescriptor;
|
|
|
|
public abstract class AbstractJsCheckerTest extends KotlinLightCodeInsightFixtureTestCase {
|
|
@NotNull
|
|
@Override
|
|
protected LightProjectDescriptor getProjectDescriptor() {
|
|
return KotlinStdJSProjectDescriptor.INSTANCE;
|
|
}
|
|
|
|
public void doTest(String filePath) {
|
|
myFixture.configureByFile(fileName());
|
|
myFixture.checkHighlighting(true, false, false);
|
|
}
|
|
}
|