blob: 649cb12295b3b1be8df648bc71895ad5be9f14cf [file] [log] [blame]
package com.siyeh.ig.encapsulation;
import com.siyeh.ig.IGInspectionTestCase;
public class ProtectedInnerClassInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
final ProtectedInnerClassInspection tool = new ProtectedInnerClassInspection();
tool.ignoreEnums = true;
tool.ignoreInterfaces = true;
doTest("com/siyeh/igtest/encapsulation/protected_inner_class", tool);
}
}