KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.openedit.web;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 /**
7  * DOCUMENT ME!
8  *
9  * @author
10  * @version 1.0
11  */

12 public class AllTests
13 {
14
15     /**
16      *
17      *
18      * @return
19      */

20     public static Test suite()
21     {
22         TestSuite suite = new TestSuite("Test for com.openedit.web");
23
24         //$JUnit-BEGIN$
25
suite.addTest(new TestSuite(BrowserTest.class));
26         //$JUnit-END$
27
return suite;
28     }
29 }
30
Popular Tags