KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > wcf > convert > AllTests


1 package com.tonbeller.wcf.convert;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 /**
7  * @author andreas
8  *
9  * To change this generated comment edit the template variable "typecomment":
10  * Window>Preferences>Java>Templates.
11  * To enable and disable the creation of type comments go to
12  * Window>Preferences>Java>Code Generation.
13  */

14 public class AllTests {
15
16   public static Test suite() {
17     TestSuite suite = new TestSuite("Test for com.tonbeller.wcf.convert");
18     //$JUnit-BEGIN$
19
suite.addTest(new TestSuite(BooleanConverterTest.class));
20     suite.addTest(new TestSuite(ConverterFactoryTest.class));
21     suite.addTest(new TestSuite(EditCtrlConverterTest.class));
22     suite.addTest(new TestSuite(SelectMultipleConverterTest.class));
23     suite.addTest(new TestSuite(SelectSingleConverterTest.class));
24     //$JUnit-END$
25
return suite;
26   }
27 }
28
Popular Tags