blob: 16889dd320418ff7b600a77d2cf4b80d0a08de30 [file] [log] [blame]
package com.siyeh.ig.bugs;
import com.siyeh.ig.IGInspectionTestCase;
public class ThrowableInstanceNeverThrownInspectionTest
extends IGInspectionTestCase {
public void test() throws Exception {
doTest("com/siyeh/igtest/bugs/throwable_instance_never_thrown",
new ThrowableInstanceNeverThrownInspection());
}
}