1 22 package org.jboss.test.cmp2.commerce; 23 24 import junit.framework.Test; 25 import junit.framework.TestCase; 26 import junit.framework.TestSuite; 27 28 public class RelationTest extends TestCase { 29 30 public RelationTest(String name) { 31 super(name); 32 } 33 34 public static Test suite() { 35 TestSuite testSuite = new TestSuite("RelationTest"); 36 testSuite.addTestSuite(OneToOneUniTest.class); 37 testSuite.addTestSuite(OneToManyBiTest.class); 38 testSuite.addTestSuite(ManyToOneUniTest.class); 39 testSuite.addTestSuite(ManyToManyBiTest.class); 40 return testSuite; 41 } 42 } 43 44 45 46 | Popular Tags |