blob: fb339a9317afe99d91198496fe48c09a84557374 [file] [log] [blame]
package com.siyeh.ig.classmetrics;
import com.siyeh.ig.IGInspectionTestCase;
public class ConstructorCountInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
final ConstructorCountInspection tool = new ConstructorCountInspection();
tool.m_limit = 2;
tool.ignoreDeprecatedConstructors = true;
doTest("com/siyeh/igtest/classmetrics/constructor_count", tool);
}
}