blob: e4a9b0d5780e3747f1f0f61a90050ff11d01b84b [file] [log] [blame]
package com.siyeh.ig.controlflow;
import com.siyeh.ig.IGInspectionTestCase;
public class UnnecessaryContinueInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
final UnnecessaryContinueInspection inspection = new UnnecessaryContinueInspection();
inspection.ignoreInThenBranch = true;
doTest("com/siyeh/igtest/controlflow/unnecessary_continue", inspection);
}
}