blob: 13cce0b44f3b25ee65e0cf713fe95aace743dbdd [file] [log] [blame]
package com.siyeh.ig.errorhandling;
import com.siyeh.ig.IGInspectionTestCase;
public class ThrowsRuntimeExceptionInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
doTest("com/siyeh/igtest/errorhandling/throws_runtime_exception", new ThrowsRuntimeExceptionInspection());
}
}