@Test public void testListArguments()
{
Arguments a = new Arguments( "lots" );
a.processArgs( new String [] { "-lots", "A", "B", "C" } );
assertEquals( listOfStrings( "A B C" ), a.listFor( "lots" ) );
}
@Test public void testListArgumentsDefault()
{
Arguments a = new Arguments( "lots" );