blob: fe513136456d25561430fb8b745ed01ae50c7f78 [file] [log] [blame]
package com.siyeh.ig.migration;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.LightInspectionTestCase;
public class ForCanBeForeachInspectionTest extends LightInspectionTestCase {
public void testForCanBeForEach() {
doTest();
}
@Override
protected InspectionProfileEntry getInspection() {
return new ForCanBeForeachInspection();
}
@Override
protected String getBasePath() {
return "/plugins/InspectionGadgets/test/com/siyeh/igtest/migration/foreach";
}
}