KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > java2html > plugin > jspwiki > test > AllTests


1 package de.java2html.plugin.jspwiki.test;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 /**
7  * @author Markus Gebhard
8  */

9 public class AllTests {
10
11   public static Test suite() {
12     TestSuite suite = new TestSuite("Test for de.java2html.plugin.jspwiki.test");
13     //$JUnit-BEGIN$
14
suite.addTestSuite(Java2HtmlPluginTest.class);
15     suite.addTestSuite(PluginParameterCheckerTest.class);
16     //$JUnit-END$
17
return suite;
18   }
19 }
20
Popular Tags