KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > core > associations > AllTests


1 package org.columba.core.associations;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 public class AllTests {
7
8     public static Test suite() {
9         TestSuite suite = new TestSuite(
10                 "Test for org.columba.core.associations");
11         //$JUnit-BEGIN$
12
suite.addTestSuite(AssociationStoreCases.class);
13         //$JUnit-END$
14
return suite;
15     }
16
17 }
18
Popular Tags