mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
28 lines
996 B
Java
28 lines
996 B
Java
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
package com.siyeh.ig.fixes.style;
|
|
|
|
import com.intellij.codeInsight.daemon.quickFix.LightQuickFixParameterizedTestCase;
|
|
import com.intellij.codeInspection.LocalInspectionTool;
|
|
import com.intellij.testFramework.LightProjectDescriptor;
|
|
import com.siyeh.ig.style.EscapedSpaceInspection;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import static com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase.JAVA_21;
|
|
|
|
public class EscapedSpaceInspectionTest extends LightQuickFixParameterizedTestCase {
|
|
@Override
|
|
protected LocalInspectionTool @NotNull [] configureLocalInspectionTools() {
|
|
return new EscapedSpaceInspection[]{new EscapedSpaceInspection()};
|
|
}
|
|
|
|
@Override
|
|
protected @NotNull LightProjectDescriptor getProjectDescriptor() {
|
|
return JAVA_21;
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInspection/escapedSpace";
|
|
}
|
|
}
|