summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/testsrc/com/siyeh/ig/controlflow/IfStatementWithIdenticalBranchesInspectionTest.java
blob: 1562b8c9053c98c856bfa8c56531176321ef1715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.siyeh.ig.controlflow;

import com.siyeh.ig.IGInspectionTestCase;

public class IfStatementWithIdenticalBranchesInspectionTest
  extends IGInspectionTestCase {

  public void test() throws Exception {
    doTest("com/siyeh/igtest/controlflow/if_statement_with_identical_branches",
           new IfStatementWithIdenticalBranchesInspection());
  }
}