blob: 43964a565e3136c5ad54b157a78c4d758074dcf6 [file] [log] [blame]
package com.siyeh.ig.controlflow;
import com.siyeh.ig.IGInspectionTestCase;
public class SwitchStatementWithTooFewBranchesInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
doTest("com/siyeh/igtest/controlflow/switch_statement_with_too_few_branches", new SwitchStatementWithTooFewBranchesInspection());
}
}