1 4 package com.openedit.util; 5 6 import junit.framework.Test; 7 import junit.framework.TestSuite; 8 9 12 public class AllTests 13 { 14 15 public static Test suite() 16 { 17 TestSuite suite = new TestSuite( "Test for com.openedit.util" ); 18 suite.addTest( new TestSuite( PathUtilitiesTest.class )); 20 suite.addTest( new TestSuite( URLUtilitiesTest.class )); 21 return suite; 24 } 25 } 26 | Popular Tags |