1 6 7 package jena.test; 8 9 import junit.swingui.TestRunner; 10 11 import com.hp.hpl.jena.rdf.arp.test.ARPTests; 12 import com.hp.hpl.jena.shared.Command; 13 14 public class rdfparse implements Command 15 { 16 protected boolean internetTest; 17 18 public rdfparse( boolean internetTest ) 19 { this.internetTest = internetTest; } 20 21 public Object execute() 22 { ARPTests.internet = internetTest; 23 TestRunner.main( new String [] { "-noloading", ARPTests.class.getName()}); 24 return null; } 25 } 26 27 56 | Popular Tags |