mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 07:15:51 +07:00
153 lines
4.1 KiB
Java
153 lines
4.1 KiB
Java
/*
|
|
* Copyright 2000-2013 JetBrains s.r.o.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package com.intellij.codeInspection;
|
|
|
|
import com.intellij.JavaTestUtil;
|
|
import com.intellij.codeInspection.localCanBeFinal.LocalCanBeFinal;
|
|
import com.intellij.testFramework.InspectionTestCase;
|
|
|
|
|
|
/**
|
|
* @author max
|
|
*/
|
|
public class LocalCanBeFinalTest extends InspectionTestCase {
|
|
private LocalCanBeFinal myTool;
|
|
|
|
@Override
|
|
protected String getTestDataPath() {
|
|
return JavaTestUtil.getJavaTestDataPath() + "/inspection";
|
|
}
|
|
|
|
@Override
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
myTool = new LocalCanBeFinal();
|
|
}
|
|
|
|
private void doTest() throws Exception {
|
|
doTest("localCanBeFinal/" + getTestName(false), myTool);
|
|
}
|
|
|
|
public void testmultiWriteNoRead() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testif() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testincompleteAssignment() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
|
|
public void testparameters() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testSCR6744_1() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testSCR6744_2() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testSCR6744_3() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testSCR6744_4() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testSCR6744_5() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testSCR6744_6() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testSCR7601() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testSCR7428_1() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testSCR7428() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testSCR11757() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
public void testforeach() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
|
|
public void testLambdaBody() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
|
|
public void testForeachNotReported() throws Exception {
|
|
myTool.REPORT_PARAMETERS = true;
|
|
myTool.REPORT_VARIABLES = false;
|
|
myTool.REPORT_FOREACH_PARAMETERS = false;
|
|
doTest();
|
|
}
|
|
|
|
public void testNestedForeach() throws Exception {
|
|
myTool.REPORT_PARAMETERS = false;
|
|
myTool.REPORT_VARIABLES = true;
|
|
myTool.REPORT_FOREACH_PARAMETERS = true;
|
|
doTest();
|
|
}
|
|
|
|
public void testFor() throws Exception {
|
|
myTool.REPORT_PARAMETERS = false;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
|
|
public void testCatchParameter() throws Exception {
|
|
myTool.REPORT_PARAMETERS = false;
|
|
myTool.REPORT_VARIABLES = true;
|
|
doTest();
|
|
}
|
|
}
|