From 4c7a7565ceae436938154a922a26f028d4298e95 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 28 Sep 2009 20:07:31 +0400 Subject: [PATCH] fix case of testdata --- .../testSrc/com/intellij/codeInspection/EqualsAndHashCodeTest.java | 2 +- .../testSrc/com/intellij/codeInspection/RedundantThrowTest.java | 4 ++-- .../testSrc/com/intellij/codeInspection/SameParameterValueTest.java | 2 +- .../com/intellij/codeInspection/UnusedMethodParameterTest.java | 2 +- .../testSrc/com/intellij/codeInspection/UnusedReturnValueTest.java | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/java/java-tests/testSrc/com/intellij/codeInspection/EqualsAndHashCodeTest.java b/java/java-tests/testSrc/com/intellij/codeInspection/EqualsAndHashCodeTest.java index 405ba90329..935d90e1a6 100644 --- a/java/java-tests/testSrc/com/intellij/codeInspection/EqualsAndHashCodeTest.java +++ b/java/java-tests/testSrc/com/intellij/codeInspection/EqualsAndHashCodeTest.java @@ -34,7 +34,7 @@ public class EqualsAndHashCodeTest extends InspectionTestCase { } private void doTest() throws Exception { - doTest("equalsAndHashcode/" + getTestName(false), myTool); + doTest("equalsAndHashcode/" + getTestName(true), myTool); } diff --git a/java/java-tests/testSrc/com/intellij/codeInspection/RedundantThrowTest.java b/java/java-tests/testSrc/com/intellij/codeInspection/RedundantThrowTest.java index c7ac979a79..ac0638787b 100644 --- a/java/java-tests/testSrc/com/intellij/codeInspection/RedundantThrowTest.java +++ b/java/java-tests/testSrc/com/intellij/codeInspection/RedundantThrowTest.java @@ -31,10 +31,10 @@ public class RedundantThrowTest extends InspectionTestCase { public void testEntryPoint() throws Exception { final RedundantThrows tool = new RedundantThrows(); - doTest("redundantThrow/" + getTestName(false), tool, false, true); + doTest("redundantThrow/" + getTestName(true), tool, false, true); } - public void testInherited() throws Exception { + public void testinherited() throws Exception { doTest(); } } diff --git a/java/java-tests/testSrc/com/intellij/codeInspection/SameParameterValueTest.java b/java/java-tests/testSrc/com/intellij/codeInspection/SameParameterValueTest.java index 7687b006de..9f1890acbf 100644 --- a/java/java-tests/testSrc/com/intellij/codeInspection/SameParameterValueTest.java +++ b/java/java-tests/testSrc/com/intellij/codeInspection/SameParameterValueTest.java @@ -13,7 +13,7 @@ public class SameParameterValueTest extends InspectionTestCase { } private String getTestDir() { - return "sameParameterValue/" + getTestName(false); + return "sameParameterValue/" + getTestName(true); } public void testEntryPoint() throws Exception { diff --git a/java/java-tests/testSrc/com/intellij/codeInspection/UnusedMethodParameterTest.java b/java/java-tests/testSrc/com/intellij/codeInspection/UnusedMethodParameterTest.java index 8be36c35e6..03d0be28fe 100644 --- a/java/java-tests/testSrc/com/intellij/codeInspection/UnusedMethodParameterTest.java +++ b/java/java-tests/testSrc/com/intellij/codeInspection/UnusedMethodParameterTest.java @@ -23,7 +23,7 @@ public class UnusedMethodParameterTest extends InspectionTestCase { private final UnusedParametersInspection myTool = new UnusedParametersInspection(); private void doTest() throws Exception { - doTest("unusedMethodParameter/" + getTestName(false), myTool); + doTest("unusedMethodParameter/" + getTestName(true), myTool); } public void testFieldInAnonymousClass() throws Exception { diff --git a/java/java-tests/testSrc/com/intellij/codeInspection/UnusedReturnValueTest.java b/java/java-tests/testSrc/com/intellij/codeInspection/UnusedReturnValueTest.java index 80f9c7c929..4e086f0e7a 100644 --- a/java/java-tests/testSrc/com/intellij/codeInspection/UnusedReturnValueTest.java +++ b/java/java-tests/testSrc/com/intellij/codeInspection/UnusedReturnValueTest.java @@ -23,11 +23,11 @@ public class UnusedReturnValueTest extends InspectionTestCase { } private void doTest() throws Exception { - doTest("unusedReturnValue/" + getTestName(false), myTool); + doTest("unusedReturnValue/" + getTestName(true), myTool); } - public void testnonLiteral() throws Exception { + public void testNonLiteral() throws Exception { doTest(); } -- 2.11.4.GIT