CommandInfo cmdInfo = cl.parseCommandLine(shell);
Command cmd = cmdInfo.createCommandInstance();
Assert.assertEquals(0, cmd.getArgumentBundle().getArgument("arg1").getValues().length);
cl = new CommandLine(new Token("cmd"), new Token[] {new Token("F1")}, null);
cmdInfo = cl.parseCommandLine(shell);
cmd = cmdInfo.createCommandInstance();
Assert.assertEquals(1, cmd.getArgumentBundle().getArgument("arg1").getValues().length);
cl =
new CommandLine(new Token("cmd"), new Token[] {new Token("F1"), new Token("F1")},