Skip to content

Commit 90c8341

Browse files
committed
Normalize test method names
1 parent d0d7b4e commit 90c8341

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/java/org/apache/commons/cli/bug/BugCLI265Test.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void setUp() {
5353
}
5454

5555
@Test
56-
public void shouldParseConcatenatedShortOptions() throws Exception {
56+
public void testShouldParseConcatenatedShortOptions() throws Exception {
5757
final String[] concatenatedShortOptions = {"-t1", "-ab"};
5858

5959
final CommandLine commandLine = parser.parse(options, concatenatedShortOptions);
@@ -66,7 +66,7 @@ public void shouldParseConcatenatedShortOptions() throws Exception {
6666
}
6767

6868
@Test
69-
public void shouldParseShortOptionWithoutValue() throws Exception {
69+
public void testShouldParseShortOptionWithoutValue() throws Exception {
7070
final String[] twoShortOptions = {"-t1", "-last"};
7171

7272
final CommandLine commandLine = parser.parse(options, twoShortOptions);
@@ -77,7 +77,7 @@ public void shouldParseShortOptionWithoutValue() throws Exception {
7777
}
7878

7979
@Test
80-
public void shouldParseShortOptionWithValue() throws Exception {
80+
public void testShouldParseShortOptionWithValue() throws Exception {
8181
final String[] shortOptionWithValue = {"-t1", "path/to/my/db"};
8282

8383
final CommandLine commandLine = parser.parse(options, shortOptionWithValue);

0 commit comments

Comments
 (0)