blob: 293d372d6ca6e2db8e15c3fc11f8bf71cba433f3 [file] [log] [blame]
package com.siyeh.ig.bugs;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.LightInspectionTestCase;
public class MismatchedStringBuilderQueryUpdateInspectionTest extends LightInspectionTestCase {
public void testMismatchedStringBuilderQueryUpdate() throws Exception {
doTest();
}
@Override
protected InspectionProfileEntry getInspection() {
return new MismatchedStringBuilderQueryUpdateInspection();
}
}