1 6 7 package com.hp.hpl.jena.util.iterator.test; 8 9 import junit.framework.TestSuite; 10 11 public class TestPackage extends TestSuite 12 { 13 static public TestSuite suite() 14 { return new TestPackage(); } 15 16 private TestPackage() 17 { 18 super( "iterators" ); 19 addTest( TestWrappedIterator.suite() ); 20 addTest( TestNullIterator.suite() ); 21 addTest( new TestSuite( TestResourceUtils.class ) ); 22 } 23 } 24 25 54 | Popular Tags |