KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > java2html > properties > test > AllTests


1 package de.java2html.properties.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.converter.options.test");
13     //$JUnit-BEGIN$
14
suite.addTestSuite(ConversionOptionsPropertiesReaderTest.class);
15     suite.addTestSuite(ConversionOptionsPropertiesPersistenceTest.class);
16     //$JUnit-END$
17
return suite;
18   }
19 }
20
Popular Tags