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