50515253545556
} @Test public void ensureParsesCommandArguments() { ScriptElement x = new ScriptElement( "title", listOfStrings( "a tale of two clocks" ), "" ); assertEquals( list( x ), new ScriptParser().parse( "!title a tale of two clocks\n" ) ); }
202122232425
import com.hp.jena3.rules.grammar.JenaRules; public class Utils { public static JenaRules parserOn( String text ) { return new JenaRules( new StringReader( text ) ); }