Skip to content

Commit

Permalink
Issue #2271: Remove underscores from method names
Browse files Browse the repository at this point in the history
  • Loading branch information
mkordas authored and romani committed Oct 6, 2015
1 parent 6fbe3f3 commit 58b28a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Expand Up @@ -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;

Expand All @@ -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;

Expand All @@ -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"),
Expand Down
Expand Up @@ -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"),
Expand All @@ -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"),
Expand All @@ -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"),
Expand Down

0 comments on commit 58b28a7

Please sign in to comment.