@Test
public void run4() throws Exception
{
Run r = Run.parse( itest, parseXml( "<run test=\"foo\"><arg name=\"abc\" value=\"234\"/></run>" ) );
assertNull( test );
r.run( new HashMap<String, String>() );
assertEquals( "foo", test.name() );
assertEquals( 1, test.args.size() );
assertEquals( "234", test.args.get( "abc" ) );
}