blob: c77592d9b354247c840ac351f7721448888e1c48 [file] [log] [blame]
package com.siyeh.ig.controlflow;
import com.siyeh.ig.IGInspectionTestCase;
public class SwitchStatementWithoutDefaultInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
doTest("com/siyeh/igtest/controlflow/switch_statements_without_default",
new SwitchStatementsWithoutDefaultInspection());
}
}