blob: 47bf805629cd31cb7d286abde1a4e4e3b5a63623 [file] [log] [blame]
package com.siyeh.ig.style;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.LightInspectionTestCase;
public class SimplifiableAnnotationInspectionTest extends LightInspectionTestCase {
public void testSimplifiableAnnotation() throws Exception {
doTest();
}
@Override
protected InspectionProfileEntry getInspection() {
return new SimplifiableAnnotationInspection();
}
}