blob: 94eca51f9b1857327ccf938bb38f1f17df666d6c [file] [log] [blame]
package com.siyeh.ig.inheritance;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.intellij.testFramework.LightProjectDescriptor;
import com.siyeh.ig.LightInspectionTestCase;
import org.jetbrains.annotations.NotNull;
/**
* @author bas
*/
public class TypeParameterExtendsFinalClassInspectionTest extends LightInspectionTestCase {
public void testTypeParameterExtendsFinalClass() throws Exception {
doTest();
}
@Override
protected InspectionProfileEntry getInspection() {
return new TypeParameterExtendsFinalClassInspection();
}
@NotNull
protected LightProjectDescriptor getProjectDescriptor() {
return JAVA_1_7;
}
}