Files
openide/java/java-tests/testSrc/com/intellij/codeInspection/LocalCanBeFinalTest.java
Alexey Kudravtsev 901ef122e4 @Override inserted
2010-09-30 10:35:32 +04:00

106 lines
2.7 KiB
Java

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();
}
}