User: dsundstrom
  Date: 01/12/10 18:17:56

  Added:       src/main/org/jboss/test/cmp2/relationship
                        RelationshipUnitTestCase.java
  Log:
  Initial revision of the CMP 2.0 relation test.  These test are based on the
  EJB 2.0 specification.
  
  Revision  Changes    Path
  1.1                  
jbosstest/src/main/org/jboss/test/cmp2/relationship/RelationshipUnitTestCase.java
  
  Index: RelationshipUnitTestCase.java
  ===================================================================
  package org.jboss.test.cmp2.relationship;
  
  import junit.framework.Test;
  import junit.framework.TestCase;
  import junit.framework.TestSuite;
  import org.jboss.test.JBossTestCase;
  
  public class RelationshipUnitTestCase extends JBossTestCase {
  
        public RelationshipUnitTestCase(String name) {
                super(name);
        }
  
        public static Test suite() throws Exception {
                TestSuite testSuite = new TestSuite("RelationshipUnitTestCase");
                
testSuite.addTestSuite(org.jboss.test.cmp2.relationship.oneToOneBidirectional.ABTest.class);
                
testSuite.addTestSuite(org.jboss.test.cmp2.relationship.oneToOneUnidirectional.ABTest.class);
                
testSuite.addTestSuite(org.jboss.test.cmp2.relationship.oneToManyBidirectional.ABTest.class);
                
testSuite.addTestSuite(org.jboss.test.cmp2.relationship.oneToManyUnidirectional.ABTest.class);
                
testSuite.addTestSuite(org.jboss.test.cmp2.relationship.manyToOneUnidirectional.ABTest.class);
                
testSuite.addTestSuite(org.jboss.test.cmp2.relationship.manyToManyBidirectional.ABTest.class);
                
testSuite.addTestSuite(org.jboss.test.cmp2.relationship.manyToManyUnidirectional.ABTest.class);
                return getJ2eeSetup(testSuite, "relationship.jar");
        }       
  }
  
  
  
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to