KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > instantiation > InstantiationTests


1 package org.jbpm.instantiation;
2
3 import junit.framework.*;
4
5 public class InstantiationTests {
6
7   public static Test suite() throws Exception JavaDoc {
8     TestSuite suite = new TestSuite("org.jbpm.instantiation");
9
10     suite.addTestSuite( BeanInstantiatorTest.class );
11     suite.addTestSuite( ConfigurationPropertyInstantiatorTest.class );
12     suite.addTestSuite( ConstructorInstantiatorTest.class );
13     suite.addTestSuite( DefaultInstantiatorTest.class );
14     suite.addTestSuite( FieldInstantiatorTest.class );
15
16     return suite;
17   }
18
19 }
20
Popular Tags