public void testFormat() {
ArgumentBundle bundle = new Test().getArgumentBundle();
Syntax syntax1 =
new PowersetSyntax(new OptionSyntax("intArg", 'i'),
new OptionSyntax("fileArg", 'f'));
Assert.assertEquals("[ ( -i <intArg> ) | ( -f <fileArg> ) ] ...", syntax1.format(bundle));
}
@org.junit.Test
public void testOne() throws Exception {
TestShell shell = new TestShell();