blob: db221fffd3bafcfce0f80524ba59f7b914719a9d [file] [log] [blame]
package com.siyeh.ig.j2me;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.LightInspectionTestCase;
public class SimplifiableIfStatementInspectionTest extends LightInspectionTestCase {
public void testSimplifiableIfStatement() throws Exception {
doTest();
}
@Override
protected InspectionProfileEntry getInspection() {
return new SimplifiableIfStatementInspection();
}
}