//
InvocationMatch<Instance<A>> match = matcher.parse("--help");
ParameterMatch<OptionDescriptor> helpMatch = match.getParameter(optionDesc);
assertNotNull(helpMatch);
CommandInvoker<Instance<A>, ?> invoker = match.getInvoker();
Help help = (Help)invoker.invoke(Util.wrap(new A()));
assertNotNull(help);
assertSame(desc, help.getDescriptor().getDelegate());
//
match = matcher.parse("");
invoker = match.getInvoker();
invoker.invoke(Util.wrap(new A()));