KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > db > CustomSchemaDbTests


1 package org.jbpm.db;
2
3 import junit.framework.*;
4
5 import org.jbpm.context.exe.*;
6
7 public class CustomSchemaDbTests extends TestCase {
8
9   public static Test suite() throws Exception JavaDoc {
10     TestSuite suite = new TestSuite("db tests");
11
12     try {
13       suite.addTestSuite(HibernateCustomizationTest.class);
14
15     } catch (Throwable JavaDoc t) {
16       t.printStackTrace();
17     }
18     
19     return suite;
20   }
21 }
22
Popular Tags