blob: 7c1c1327ccd7908262a15a6eecfe09be5c391d5e [file] [log] [blame]
package com.siyeh.ig.visibility;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.LightInspectionTestCase;
import org.jetbrains.annotations.Nullable;
public class AmbiguousMethodCallInspectionTest extends LightInspectionTestCase {
public void testAmbiguousMethodCall() { doTest(); }
@Nullable
@Override
protected InspectionProfileEntry getInspection() {
return new AmbiguousMethodCallInspection();
}
@Override
protected String getBasePath() {
return "/plugins/InspectionGadgets/test/com/siyeh/igtest/visibility/ambiguous";
}
}