}
public static Test suite()
{
TestSuite suite = new TestSuite();
CMPEntityBeanRegressionTestCase slt = new CMPEntityBeanRegressionTestCase("CMP Bean","InheritedCMPSub");
suite.addTest(slt.getSuite());
slt = new CMPEntityBeanRegressionTestCase("CMP Bean","InheritedCMPSuper");
suite.addTest(slt.getSuite());
DeploymentDescriptorsRegressionTestCase jbtc = new DeploymentDescriptorsRegressionTestCase("CMP Bean","InheritedCMP");
suite.addTest(jbtc.getSuite());
jbtc = new DeploymentDescriptorsRegressionTestCase("CMP Bean","InheritedCMP");
suite.addTest(jbtc.getSuite());
return suite;