blob: e2b54f8c6a1de355e0535600340fd01b1ff75977 [file] [log] [blame]
package com.siyeh.ig.abstraction;
import com.intellij.codeInspection.ex.LocalInspectionToolWrapper;
import com.siyeh.ig.IGInspectionTestCase;
public class OverlyStrongTypeCastInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
final OverlyStrongTypeCastInspection tool = new OverlyStrongTypeCastInspection();
tool.ignoreInMatchingInstanceof = true;
doTest("com/siyeh/igtest/abstraction/overly_strong_type_cast", new LocalInspectionToolWrapper(tool), "java 1.8");
}
}