blob: 1ea922e06e14158b2e99ec51fa315f91c9b015f6 [file] [log] [blame]
package com.siyeh.ig.controlflow;
import com.siyeh.ig.IGInspectionTestCase;
public class NegatedIfElseInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
final NegatedIfElseInspection tool = new NegatedIfElseInspection();
tool.m_ignoreNegatedNullComparison = true;
tool.m_ignoreNegatedZeroComparison = true;
doTest("com/siyeh/igtest/controlflow/negated_if_else", tool);
}
}