From a51bf2d3b972864944e769372687392a29f16d4b Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 28 Sep 2009 18:01:39 +0400 Subject: [PATCH] fix case of testdata --- .../com/intellij/codeInspection/DataFlowInspectionTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/java/java-tests/testSrc/com/intellij/codeInspection/DataFlowInspectionTest.java b/java/java-tests/testSrc/com/intellij/codeInspection/DataFlowInspectionTest.java index 97bf253939..34e3591c9f 100644 --- a/java/java-tests/testSrc/com/intellij/codeInspection/DataFlowInspectionTest.java +++ b/java/java-tests/testSrc/com/intellij/codeInspection/DataFlowInspectionTest.java @@ -115,20 +115,20 @@ public class DataFlowInspectionTest extends InspectionTestCase { public void testForEachNPE() throws Exception { doTest15(); } public void testArrayAccessNPE() throws Exception { doTest15(); } public void testArrayAccessDoesntCancelAnalysis() throws Exception { doTest15(); } - public void testCompileTimeConst() throws Exception { doTest15(); } - public void testAutoboxing() throws Exception { doTest15(); } - public void testUnboxingNPE() throws Exception { doTest15(); } + public void testcompileTimeConst() throws Exception { doTest15(); } + public void testautoboxing() throws Exception { doTest15(); } + public void testunboxingNPE() throws Exception { doTest15(); } public void testStrangeArrayIndexOutOfBounds() throws Exception { doTest15(); } public void testIDEADEV2605() throws Exception { doTest15(); } public void testConstantsDifferentTypes() throws Exception { doTest15(); } public void testBoxingNaN() throws Exception { doTest15(); } - public void testJspTemplateStatement() throws Exception { + public void testjspTemplateStatement() throws Exception { @NonNls final String testDir = getTestDataPath() + "/"+ "dataFlow/" + getTestName(false); runTool(testDir, "java 1.4", new LocalInspectionToolWrapper(new DataFlowInspection())); // should not crash } - public void testBoxingBoolean() throws Exception { doTest15();} + public void testboxingBoolean() throws Exception { doTest15();} public void testCheckedExceptionDominance() throws Exception { doTest15();} public void testIDEADEV10489() throws Exception { doTest15();} -- 2.11.4.GIT