KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > util > AllTests


1 /*
2  * Created on Jun 23, 2004
3  */

4 package com.openedit.util;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9 /**
10  * @author Matthew Avery, mavery@einnovation.com
11  */

12 public class AllTests
13 {
14
15     public static Test suite()
16     {
17         TestSuite suite = new TestSuite( "Test for com.openedit.util" );
18         //$JUnit-BEGIN$
19
suite.addTest( new TestSuite( PathUtilitiesTest.class ));
20         suite.addTest( new TestSuite( URLUtilitiesTest.class ));
21         //This is prone to errors due to down server
22
//$JUnit-END$
23
return suite;
24     }
25 }
26
Popular Tags