Skip to content

Commit 3f93fda

Browse files
committed
Rename CommandSubcommandFilterTest -> CommandModelTransformersTest
1 parent 4d0555e commit 3f93fda

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/test/java/picocli/CommandSubcommandFilterTest.java renamed to src/test/java/picocli/CommandModelTransformersTest.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
import static org.junit.Assert.*;
1414

15-
public class CommandSubcommandFilterTest {
15+
public class CommandModelTransformersTest {
1616
// allows tests to set any kind of properties they like, without having to individually roll them back
1717
@Rule
1818
public final TestRule restoreSystemProperties = new RestoreSystemProperties();
@@ -132,6 +132,11 @@ public void testFunctionAnnotatedCommandFiltering() {
132132
// there is only class annotated subcommand now
133133
assertArrayEquals(new String[]{"aa"}, cmd.getSubcommands().get("a").getSubcommands().keySet().toArray(new String[0]));
134134
}
135+
136+
@Test
137+
public void programmaticAPICommandFiltering() {
138+
// TODO
139+
}
135140
}
136141

137142

0 commit comments

Comments
 (0)