1 | package org.columba.core.associations;↵ | | 1 | package org.columba.core.tagging;↵
|
|
2 | import junit.framework.Test;↵ | | 2 | import junit.framework.Test;↵
|
3 | import junit.framework.TestSuite;↵ | | 3 | import junit.framework.TestSuite;↵
|
|
4 | public class AllTests {↵ | | 4 | public class AllTests {↵
|
|
5 | public static Test suite() {↵ | | 5 | public static Test suite() {↵
|
6 | TestSuite suite = new TestSuite(↵ | | 6 | TestSuite suite = new TestSuite(↵
|
7 | "Test for org.columba.core.associations");↵ | | 7 | "Test for org.columba.core.tagging");↵
|
8 | //$JUnit-BEGIN$↵ | | 8 | //$JUnit-BEGIN$↵
|
9 | suite.addTestSuite(AssociationStoreCases.class);↵ | | 9 | suite.addTestSuite(TagManagerTest.class);↵
|
10 | //$JUnit-END$↵ | | 10 | //$JUnit-END$↵
|
11 | return suite;↵ | | 11 | return suite;↵
|
12 | } | | 12 | }
|