blob: ab2f4ea0c0dcc57cfe0fe766f0eaed1f238dc9ff [file] [log] [blame]
package com.siyeh.ig.methodmetrics;
import com.siyeh.ig.IGInspectionTestCase;
public class ThreeNegationsPerMethodInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
final ThreeNegationsPerMethodInspection tool = new ThreeNegationsPerMethodInspection();
tool.m_ignoreInEquals = true;
tool.ignoreInAssert = true;
doTest("com/siyeh/igtest/methodmetrics/three_negations_per_method", tool);
}
}