mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 07:15:51 +07:00
31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package com.intellij.codeInspection;
|
|
|
|
import com.intellij.JavaTestUtil;
|
|
import com.intellij.codeInspection.miscGenerics.RedundantArrayForVarargsCallInspection;
|
|
import com.siyeh.ig.LightInspectionTestCase;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
/**
|
|
* @author cdr
|
|
*/
|
|
public class RedundantArrayForVarargsCallInspectionTest extends LightInspectionTestCase {
|
|
@Override
|
|
protected String getTestDataPath() {
|
|
return JavaTestUtil.getJavaTestDataPath() + "/inspection/redundantArrayForVarargs/";
|
|
}
|
|
|
|
@Nullable
|
|
@Override
|
|
protected InspectionProfileEntry getInspection() {
|
|
return new RedundantArrayForVarargsCallInspection();
|
|
}
|
|
|
|
public void testIDEADEV15215() throws Exception { doTest(); }
|
|
public void testIDEADEV25923() throws Exception { doTest(); }
|
|
public void testNestedArray() throws Exception { doTest(); }
|
|
public void testCheckEnumConstant() throws Exception { doTest(); }
|
|
public void testGeneric() throws Exception { doTest(); }
|
|
public void testRawArray() throws Exception { doTest(); }
|
|
public void testPolymorphicSignature() throws Exception { doTest(); }
|
|
}
|