blob: 73c4a59dd89afe49e7a95ee49873f5a0eabb5e8e [file] [log] [blame]
package com.siyeh.ig.style;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.LightInspectionTestCase;
public class FieldMayBeFinalInspectionTest extends LightInspectionTestCase {
public void testFieldMayBeFinal() throws Exception {
doTest();
}
@Override
protected InspectionProfileEntry getInspection() {
return new FieldMayBeFinalInspection();
}
@Override
protected String getBasePath() {
return "/plugins/InspectionGadgets/test/com/siyeh/igtest/style/field_final";
}
}