{
@Test
public void simpleArgs()
throws ParseException
{
Args1 args = singleCommandParser(Args1.class).parse("Args1",
"-debug", "-log", "2", "-float", "1.2", "-double", "1.3", "-bigdecimal", "1.4",
"-groups", "unit", "a", "b", "c");
assertTrue(args.debug);
assertEquals(args.verbose.intValue(), 2);