71727374757677787980
/** @throws Exception */ @org.junit.Test public void parse4() throws Exception { Prog p = Prog.parse( test, parseXml( "<prog name=\"foo\"/>" ) ); assertSame( test, p.test() ); assertEquals( "foo", p.name() ); assertEquals( 0, p.args().size() ); }