01: /*
02: * Created on Jun 23, 2004
03: */
04: package com.openedit.util;
05:
06: import junit.framework.Test;
07: import junit.framework.TestSuite;
08:
09: /**
10: * @author Matthew Avery, mavery@einnovation.com
11: */
12: public class AllTests {
13:
14: public static Test suite() {
15: TestSuite suite = new TestSuite("Test for com.openedit.util");
16: //$JUnit-BEGIN$
17: suite.addTest(new TestSuite(PathUtilitiesTest.class));
18: suite.addTest(new TestSuite(URLUtilitiesTest.class));
19: //This is prone to errors due to down server
20: //$JUnit-END$
21: return suite;
22: }
23: }
|