summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/testsrc/com/siyeh/ig/style/UnnecessaryFullyQualifiedNameInspectionTest.java
blob: 6c5a89009735c5537cc74a1d8bc9a94287c41293 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.siyeh.ig.style;

import com.siyeh.ig.IGInspectionTestCase;

public class UnnecessaryFullyQualifiedNameInspectionTest extends IGInspectionTestCase {

  public void test() throws Exception {
    doTest("com/siyeh/igtest/style/unnecessary_fully_qualified_name",
           new UnnecessaryFullyQualifiedNameInspection());
  }
}