KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.columba.core.tagging;
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("Test for org.columba.core.tagging");
10         //$JUnit-BEGIN$
11
suite.addTestSuite(TagManagerTest.class);
12         //$JUnit-END$
13
return suite;
14     }
15
16 }
17
Popular Tags