blob: 4aa2832b772f670abf91c86c4ef0955b3d4f3920 [file] [log] [blame]
package com.siyeh.ipp.exceptions;
import com.siyeh.IntentionPowerPackBundle;
import com.siyeh.ipp.IPPTestCase;
/**
* @see DetailExceptionsIntention
* @author Bas Leijdekkers
*/
public class DetailExceptionsIntentionTest extends IPPTestCase {
public void testDisjunction() { assertIntentionNotAvailable(); }
public void testSimple() { doTest(); }
public void testForeach() { doTest(); }
public void testTryWithResources() { doTest(); }
public void testPolyadicParentheses() { doTest(); }
@Override
protected String getIntentionName() {
return IntentionPowerPackBundle.message("detail.exceptions.intention.name");
}
@Override
protected String getRelativePath() {
return "exceptions/detail";
}
}