mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
// Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
|
package com.jetbrains.jython;
|
|
|
|
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase;
|
|
import com.jetbrains.python.PythonHelpersLocator;
|
|
import com.jetbrains.python.inspections.PyCallingNonCallableInspection;
|
|
import com.jetbrains.python.inspections.unresolvedReference.PyUnresolvedReferencesInspection;
|
|
|
|
|
|
public class PyJythonHighlightingTest extends LightJavaCodeInsightFixtureTestCase {
|
|
public void testCallableJavaClass() {
|
|
doCallableTest();
|
|
}
|
|
|
|
public void testCallableStaticMethod() {
|
|
doCallableTest();
|
|
}
|
|
|
|
private void doCallableTest() {
|
|
myFixture.configureByFile(getTestName(false) + ".py");
|
|
myFixture.enableInspections(PyCallingNonCallableInspection.class, PyUnresolvedReferencesInspection.class);
|
|
myFixture.checkHighlighting(true, false, false);
|
|
}
|
|
|
|
|
|
@Override
|
|
protected String getTestDataPath() {
|
|
return PythonHelpersLocator.getPythonCommunityPath() + "/testData/highlighting/jython/";
|
|
}
|
|
}
|