blob: d17c0b31e19b737df571b4a01b472f545e0afd6a [file] [log] [blame]
package com.siyeh.ig.bugs;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.LightInspectionTestCase;
import org.jetbrains.annotations.Nullable;
public class StringEqualityInspectionTest extends LightInspectionTestCase {
public void testStringEquality() {
doTest();
}
@Nullable
@Override
protected InspectionProfileEntry getInspection() {
return new StringEqualityInspection();
}
}