summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/testsrc/com/siyeh/ig/classmetrics/ConstructorCountInspectionTest.java
blob: fb339a9317afe99d91198496fe48c09a84557374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
  }
}