KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * Created on Feb 18, 2005
3  */

4 package com.openedit.blog;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9 /**
10  * @author cburkey
11  *
12  */

13 public class AllTests
14 {
15
16     public static Test suite()
17     {
18         TestSuite suite = new TestSuite("Test for com.openedit.blog");
19         //$JUnit-BEGIN$
20
suite.addTestSuite(BlogTest.class);
21         suite.addTestSuite(PageCommentTest.class);
22         //$JUnit-END$
23
return suite;
24     }
25 }
26
Popular Tags