blob: b40649aed8f483ddb342588a46d898fa505f2a34 [file] [log] [blame]
package com.siyeh.ig.portability;
import com.siyeh.ig.IGInspectionTestCase;
public class SystemExitInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
final SystemExitInspection tool = new SystemExitInspection();
tool.ignoreInMainMethod = true;
doTest("com/siyeh/igtest/portability/system_exit", tool);
}
}