1 5 6 package com.hp.hpl.jena.n3.test; 7 8 import junit.framework.* ; 9 10 14 public class N3TestSuite extends TestSuite 15 { 16 17 static public TestSuite suite() { 18 return new N3TestSuite() ; 19 } 20 21 22 private N3TestSuite() 23 { 24 super("N3") ; 25 addTest(new N3InternalTests()) ; 26 addTest(new N3ExternalTests()) ; 27 addTest(new N3JenaReaderTests()) ; 28 addTest(new N3JenaWriterTests()) ; 29 } 30 } 31 32 58 | Popular Tags |