blob: 3a44ca0f48d7a2724d051d085f855fe0a843bee4 [file] [log] [blame]
package com.siyeh.ig.abstraction;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.LightInspectionTestCase;
public class MagicNumberInspectionTest extends LightInspectionTestCase {
public void testMagicNumber() {
doTest();
}
@Override
protected InspectionProfileEntry getInspection() {
final MagicNumberInspection tool = new MagicNumberInspection();
tool.ignoreInHashCode = true;
tool.ignoreInAnnotations = true;
tool.ignoreInitialCapacity = true;
return tool;
}
}