/** @throws Exception */
@Test
public void run10() throws Exception
{
Run r = Run.parse( itest, parseXml( "<run test=\"bar\"><arg name=\"abc\" value=\"x\\{p1}y\"/></run>" ) );
assertNull( test );
Map<String, String> args = new HashMap<String, String>();
args.put( "p1", "123" );
r.run( args );
assertEquals( "bar", test.name() );
assertEquals( 1, test.args.size() );
assertEquals( "x{p1}y", test.args.get( "abc" ) );
}