use of org.broadinstitute.barclay.argparser.CommandLineArgumentParser in project gatk by broadinstitute.
the class ReferenceInputArgumentCollectionTest method testRequiredIsRequired.
@Test(expectedExceptions = CommandLineException.class)
public void testRequiredIsRequired() {
String[] args = {};
WithRequiredReferenceCollection required = new WithRequiredReferenceCollection();
CommandLineParser clp = new CommandLineArgumentParser(required);
clp.parseArguments(System.out, args);
}
use of org.broadinstitute.barclay.argparser.CommandLineArgumentParser in project gatk by broadinstitute.
the class IntervalArgumentCollectionTest method testRequiredIsRequired.
@Test(expectedExceptions = CommandLineException.class)
public void testRequiredIsRequired() {
WithRequiredIntervals opt = new WithRequiredIntervals();
CommandLineParser clp = new CommandLineArgumentParser(opt);
String[] args = {};
clp.parseArguments(System.out, args);
}
Aggregations