File tree Expand file tree Collapse file tree
src/test/java/org/apache/commons/cli/bug Expand file tree Collapse file tree Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments