blob: a62ddc94002efb09bb6c53b00cc1756d73992a8c [file] [log] [blame]
package com.siyeh.ig.classmetrics;
import com.siyeh.ig.IGInspectionTestCase;
public class MethodCountInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
final MethodCountInspection tool = new MethodCountInspection();
tool.m_limit = 5;
tool.ignoreOverridingMethods = true;
doTest("com/siyeh/igtest/classmetrics/method_count", tool);
}
}