blob: adeb8aeca497c9e9a458bd1732e1073483ac01cf [file] [log] [blame]
package com.siyeh.ig.bugs;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.IGInspectionTestCase;
import com.siyeh.ig.LightInspectionTestCase;
public class ThrowableResultOfMethodCallIgnoredInspectionTest extends LightInspectionTestCase {
public void testA() throws Exception {
doTest();
}
@Override
protected InspectionProfileEntry getInspection() {
return new ThrowableResultOfMethodCallIgnoredInspection();
}
}