From 58b28a75e171b7a0f0186a8f1161824a82cc5c8e Mon Sep 17 00:00:00 2001 From: Michal Kordas Date: Tue, 6 Oct 2015 21:11:22 +0200 Subject: [PATCH] Issue #2271: Remove underscores from method names --- .../rule21filename/OuterTypeFilenameTest.java | 6 +++--- .../rule333orderingandsoacing/CustomImportOrderTest.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/it/java/com/google/checkstyle/test/chapter2filebasic/rule21filename/OuterTypeFilenameTest.java b/src/it/java/com/google/checkstyle/test/chapter2filebasic/rule21filename/OuterTypeFilenameTest.java index 928ff76ce3e..89455517534 100644 --- a/src/it/java/com/google/checkstyle/test/chapter2filebasic/rule21filename/OuterTypeFilenameTest.java +++ b/src/it/java/com/google/checkstyle/test/chapter2filebasic/rule21filename/OuterTypeFilenameTest.java @@ -21,7 +21,7 @@ public static void setConfigurationBuilder() { } @Test - public void outerTypeFilenameTest_1() throws Exception { + public void outerTypeFilenameTest1() throws Exception { final String[] expected = ArrayUtils.EMPTY_STRING_ARRAY; @@ -33,7 +33,7 @@ public void outerTypeFilenameTest_1() throws Exception { } @Test - public void outerTypeFilenameTest_2() throws Exception { + public void outerTypeFilenameTest2() throws Exception { final String[] expected = ArrayUtils.EMPTY_STRING_ARRAY; @@ -45,7 +45,7 @@ public void outerTypeFilenameTest_2() throws Exception { } @Test - public void outerTypeFilenameTest_3() throws Exception { + public void outerTypeFilenameTest3() throws Exception { final String[] expected = { "3: " + getCheckMessage(OuterTypeFilenameCheck.class, "type.file.mismatch"), diff --git a/src/it/java/com/google/checkstyle/test/chapter3filestructure/rule333orderingandsoacing/CustomImportOrderTest.java b/src/it/java/com/google/checkstyle/test/chapter3filestructure/rule333orderingandsoacing/CustomImportOrderTest.java index 89c300a3452..b8f781d753a 100644 --- a/src/it/java/com/google/checkstyle/test/chapter3filestructure/rule333orderingandsoacing/CustomImportOrderTest.java +++ b/src/it/java/com/google/checkstyle/test/chapter3filestructure/rule333orderingandsoacing/CustomImportOrderTest.java @@ -30,7 +30,7 @@ public static void setConfigurationBuilder() { } @Test - public void customImportTest_1() throws Exception { + public void customImportTest1() throws Exception { final String[] expected = { "4: " + getCheckMessage(clazz, MSG_LEX, "java.awt.Button.ABORT", "java.io.File.createTempFile"), @@ -54,7 +54,7 @@ public void customImportTest_1() throws Exception { } @Test - public void customImportTest_2() throws Exception { + public void customImportTest2() throws Exception { final String[] expected = { "4: " + getCheckMessage(clazz, MSG_LEX, "java.awt.Button.ABORT", "java.io.File.createTempFile"), @@ -75,7 +75,7 @@ public void customImportTest_2() throws Exception { } @Test - public void customImportTest_3() throws Exception { + public void customImportTest3() throws Exception { final String[] expected = { "4: " + getCheckMessage(clazz, MSG_LEX, "java.awt.Button.ABORT", "java.io.File.createTempFile"),