[jboss-cvs] JBossAS SVN: r111882 - in trunk: ejb3/src/main/java/org/jboss/ejb3/deployers and 7 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jul 29 09:32:24 EDT 2011


Author: jaikiran
Date: 2011-07-29 09:32:24 -0400 (Fri, 29 Jul 2011)
New Revision: 111882

Added:
   trunk/testsuite/src/main/org/jboss/test/ejb3/service/
   trunk/testsuite/src/main/org/jboss/test/ejb3/service/DoSomethingView.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/service/SLSBOne.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/service/SLSBTwo.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/service/ServiceA.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/service/SimpleSingleton.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/service/SingletonBeanRemoteView.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/service/unit/
   trunk/testsuite/src/main/org/jboss/test/ejb3/service/unit/ServiceDependencyGraphStressTestCase.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/service/unit/ServiceDependencyGraphTestCase.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/
   trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/DoSomethingView.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SLSBOne.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SLSBTwo.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SingletonB.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SingletonBeanRemoteView.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/StartupSingletonA.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/unit/
   trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/unit/StartupSingletonDependencyGraphTestCase.java
   trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/unit/StartupSingletonDependencyStressTestCase.java
Modified:
   trunk/component-matrix/pom.xml
   trunk/ejb3/src/main/java/org/jboss/ejb3/deployers/Ejb3JBoss5Deployment.java
   trunk/testsuite/imports/sections/ejb3.xml
Log:
JBAS-8814 Upgrade EJB3 dependency to bring in the fix for EJBTHREE-2227

Modified: trunk/component-matrix/pom.xml
===================================================================
--- trunk/component-matrix/pom.xml	2011-07-29 10:57:53 UTC (rev 111881)
+++ trunk/component-matrix/pom.xml	2011-07-29 13:32:24 UTC (rev 111882)
@@ -88,7 +88,7 @@
     <version.org.jboss.cluster.cache.ispn>1.0.0.Final</version.org.jboss.cluster.cache.ispn>
     <version.org.jboss.common.core>2.2.17.GA</version.org.jboss.common.core>
     <version.org.jboss.deployers>2.2.2.GA</version.org.jboss.deployers>
-    <version.org.jboss.ejb3.depchain>1.0.2</version.org.jboss.ejb3.depchain>
+    <version.org.jboss.ejb3.depchain>1.0.3</version.org.jboss.ejb3.depchain>
     <!-- This to move into the EJB3 BOM -->
     <version.org.jboss.ejb3.embedded>1.0.0-alpha-4</version.org.jboss.ejb3.embedded>
     <version.org.jboss.ejb.api>1.0-alpha-1</version.org.jboss.ejb.api>

Modified: trunk/ejb3/src/main/java/org/jboss/ejb3/deployers/Ejb3JBoss5Deployment.java
===================================================================
--- trunk/ejb3/src/main/java/org/jboss/ejb3/deployers/Ejb3JBoss5Deployment.java	2011-07-29 10:57:53 UTC (rev 111881)
+++ trunk/ejb3/src/main/java/org/jboss/ejb3/deployers/Ejb3JBoss5Deployment.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -21,8 +21,7 @@
 */
 package org.jboss.ejb3.deployers;
 
-import java.util.Collection;
-import java.util.Map;
+import java.util.*;
 
 import javax.management.MBeanServer;
 import javax.management.ObjectName;
@@ -163,8 +162,14 @@
       // but doesn't require a invokable context. An invokable context is only needed by Injector.
       dependsPolicy.addDependency(this.createSwitchBoardDependency(ejbContainer, switchBoard));
       log.debug("Added dependency on Switchboard " + switchBoard.getId() + " for EJB container " + ejbContainer.getName());
+      // EJBTHREE-2227 https://issues.jboss.org/browse/EJBTHREE-2227 add dependency on INSTALLED state
+      // (i.e. fully populated and invokable ENC) of ALL other Barriers in the DU hierarchy to avoid instantiating
+      // the @Service too early
+      if (ejbContainer instanceof ServiceContainer)
+      {
+          this.setupDependencyOnOtherBarriers((ServiceContainer) ejbContainer);
+      }
       
-      
       // create and setup Injector(s) for InjectionManager  
       InjectionManager injectionManager = this.getInjectionManager(container);
       // the container cannot function without an InjectionManager
@@ -424,5 +429,83 @@
 
       return switchboardDependency;
    }
-   
+
+    /**
+     * Finds all {@link Barrier}s within the deployment hierarchy of this {@link ServiceContainer}
+     * and sets up a dependency on INSTALLED state of each of them.
+     *
+     * @param serviceContainer The EJB3 @Service container
+     */
+   private void setupDependencyOnOtherBarriers(final ServiceContainer serviceContainer)
+   {
+      // EJBTHREE-2227 https://issues.jboss.org/browse/EJBTHREE-2227 add dependency on INSTALLED state
+      // (i.e. fully populated and invokable ENC) of ALL other Barriers in the DU hierarchy to avoid instantiating
+      // the @Service too early
+      final MCDependencyPolicy dependsPolicy = (MCDependencyPolicy) serviceContainer.getDependencyPolicy();
+
+      final Set<String> barriers = this.getBarrierIdsFromAllDeploymentUnitsInHierarchy(this.jbossUnit);
+      for (String barrier : barriers) {
+         if (barrier == null) {
+            continue;
+         }
+         AbstractDemandMetaData switchboardDependency = new AbstractDemandMetaData();
+         switchboardDependency.setDemand(barrier);
+         switchboardDependency.setWhenRequired(ControllerState.CREATE);
+         // ServiceContainer requires a populated and invokable ENC (== INSTALLED state of switchboard)
+         switchboardDependency.setTargetState(ControllerState.INSTALLED);
+
+         // add dependency on INSTALLED state (i.e. fully populated and invokable ENC) of Barrier
+         dependsPolicy.addDependency(switchboardDependency);
+      }
+
+   }
+
+    private Set<String> getBarrierIdsFromAllDeploymentUnitsInHierarchy(final org.jboss.deployers.structure.spi.DeploymentUnit deploymentUnit) {
+       final Set<String> barriers = new HashSet<String>();
+       // get the top level DU in the hierarchy of the DU
+       final org.jboss.deployers.structure.spi.DeploymentUnit topLevelDU = deploymentUnit.getTopLevel();
+       final List<org.jboss.deployers.structure.spi.DeploymentUnit> allDUs = new ArrayList<org.jboss.deployers.structure.spi.DeploymentUnit>();
+       allDUs.add(topLevelDU);
+       // now fetch all the child DUs recursively from the top level DU
+       allDUs.addAll(this.getChildrenRecursively(topLevelDU));
+       // find any Barrier in each of the DU
+       for (org.jboss.deployers.structure.spi.DeploymentUnit du : allDUs) {
+          final Barrier barrier = du.getAttachment(Barrier.class);
+          if (barrier != null) {
+             barriers.add(barrier.getId());
+          }
+       }
+       return barriers;
+    }
+
+    private List<org.jboss.deployers.structure.spi.DeploymentUnit> getChildrenRecursively(final org.jboss.deployers.structure.spi.DeploymentUnit deploymentUnit) {
+       List<org.jboss.deployers.structure.spi.DeploymentUnit> allChildren = new ArrayList<org.jboss.deployers.structure.spi.DeploymentUnit>();
+       List<org.jboss.deployers.structure.spi.DeploymentUnit> children = deploymentUnit.getChildren();
+       if (children != null && !children.isEmpty()) {
+
+          allChildren.addAll(children);
+          // find child DU of each child
+          for (org.jboss.deployers.structure.spi.DeploymentUnit child : children) {
+             if (child == null) {
+                continue;
+             }
+             allChildren.addAll(this.getChildrenRecursively(child));
+          }
+       }
+       // check component DUs too
+       final List<org.jboss.deployers.structure.spi.DeploymentUnit> componentDUs = deploymentUnit.getComponents();
+       if (componentDUs != null && !componentDUs.isEmpty()) {
+
+          allChildren.addAll(componentDUs);
+          // find child DU of each component DU
+          for (org.jboss.deployers.structure.spi.DeploymentUnit componentDU : componentDUs) {
+             if (componentDU == null) {
+                continue;
+             }
+             allChildren.addAll(this.getChildrenRecursively(componentDU));
+          }
+       }
+       return allChildren;
+    }
+
 }

Modified: trunk/testsuite/imports/sections/ejb3.xml
===================================================================
--- trunk/testsuite/imports/sections/ejb3.xml	2011-07-29 10:57:53 UTC (rev 111881)
+++ trunk/testsuite/imports/sections/ejb3.xml	2011-07-29 13:32:24 UTC (rev 111882)
@@ -238,7 +238,9 @@
    	  jbas7883,
       ejbthree1597,ejbthree7376, jboss51xsd, ejb31nointerface, ejb3war, jbpapp3026, ejb31singleton,ejb31async, 
       ejb3-portable-jndi-names,
-      singleton-security">
+      singleton-security,
+      ejbthree2227,
+      ejbthree2227-service">
       <mkdir dir="${build.lib}" />
 
       <!-- A jar with a simple ejb3 session -->
@@ -261,5 +263,85 @@
                </jar>
     </target>
 
+    <target name="ejbthree2227" depends="compile">
+        <mkdir dir="${build.lib}" />
+
+        <jar destfile="${build.lib}/a-ejbthree2227.jar">
+               <fileset dir="${build.classes}">
+                   <include name="org/jboss/test/ejb3/singleton/startup/StartupSingletonA.class" />
+               </fileset>
+        </jar>
+
+        <jar destfile="${build.lib}/b-ejbthree2227.jar">
+               <fileset dir="${build.classes}">
+                   <include name="org/jboss/test/ejb3/singleton/startup/SLSBOne.class" />
+               </fileset>
+        </jar>
+
+        <jar destfile="${build.lib}/z-ejbthree2227.jar">
+               <fileset dir="${build.classes}">
+                   <include name="org/jboss/test/ejb3/singleton/startup/SLSBTwo.class" />
+                   <include name="org/jboss/test/ejb3/singleton/startup/DoSomethingView.class" />
+               </fileset>
+        </jar>
+
+        <jar destfile="${build.lib}/c-ejbthree2227.jar">
+               <fileset dir="${build.classes}">
+                   <include name="org/jboss/test/ejb3/singleton/startup/SingletonB.class" />
+                   <include name="org/jboss/test/ejb3/singleton/startup/SingletonBeanRemoteView.class" />
+               </fileset>
+        </jar>
+
+        <jar destfile="${build.lib}/ejbthree2227.ear">
+           <fileset dir="${build.lib}">
+              <include name="a-ejbthree2227.jar"/>
+              <include name="b-ejbthree2227.jar"/>
+              <include name="c-ejbthree2227.jar"/>
+              <include name="z-ejbthree2227.jar"/>
+           </fileset>
+        </jar>
+
+    </target>
+
+    <target name="ejbthree2227-service" depends="compile">
+        <mkdir dir="${build.lib}" />
+
+        <jar destfile="${build.lib}/a-ejbthree2227-service.jar">
+               <fileset dir="${build.classes}">
+                   <include name="org/jboss/test/ejb3/service/ServiceA.class" />
+               </fileset>
+        </jar>
+
+        <jar destfile="${build.lib}/b-ejbthree2227-service.jar">
+               <fileset dir="${build.classes}">
+                   <include name="org/jboss/test/ejb3/service/SLSBOne.class" />
+               </fileset>
+        </jar>
+
+        <jar destfile="${build.lib}/z-ejbthree2227-service.jar">
+               <fileset dir="${build.classes}">
+                   <include name="org/jboss/test/ejb3/service/SLSBTwo.class" />
+                   <include name="org/jboss/test/ejb3/service/DoSomethingView.class" />
+               </fileset>
+        </jar>
+
+        <jar destfile="${build.lib}/c-ejbthree2227-service.jar">
+               <fileset dir="${build.classes}">
+                   <include name="org/jboss/test/ejb3/service/SimpleSingleton.class" />
+                   <include name="org/jboss/test/ejb3/service/SingletonBeanRemoteView.class" />
+               </fileset>
+        </jar>
+
+        <jar destfile="${build.lib}/ejbthree2227-service.ear">
+           <fileset dir="${build.lib}">
+              <include name="a-ejbthree2227-service.jar"/>
+              <include name="b-ejbthree2227-service.jar"/>
+              <include name="c-ejbthree2227-service.jar"/>
+              <include name="z-ejbthree2227-service.jar"/>
+           </fileset>
+        </jar>
+
+    </target>
+
   
 </project>

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/service/DoSomethingView.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/service/DoSomethingView.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/service/DoSomethingView.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.service;
+
+/**
+ * User: jpai
+ */
+public interface DoSomethingView {
+
+    void doSomething();
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/service/SLSBOne.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/service/SLSBOne.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/service/SLSBOne.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,54 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.service;
+
+import org.jboss.logging.Logger;
+
+import javax.annotation.PostConstruct;
+import javax.ejb.EJB;
+import javax.ejb.Local;
+import javax.ejb.Stateless;
+
+/**
+ * User: jpai
+ */
+ at Stateless
+ at Local (DoSomethingView.class)
+public class SLSBOne implements DoSomethingView {
+
+    private static Logger logger = Logger.getLogger(SLSBOne.class);
+
+    @EJB (beanName = "SLSBTwo")
+    private DoSomethingView slsbTwo;
+
+    @PostConstruct
+    public void onConstruct() throws Exception {
+        this.slsbTwo.doSomething();
+    }
+
+    @Override
+    public void doSomething() {
+        logger.info(this.getClass().getName() + "#doSomething()");
+    }
+
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/service/SLSBTwo.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/service/SLSBTwo.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/service/SLSBTwo.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.service;
+
+import org.jboss.logging.Logger;
+
+import javax.annotation.PostConstruct;
+import javax.ejb.Local;
+import javax.ejb.Stateless;
+
+/**
+ * User: jpai
+ */
+ at Stateless
+ at Local(DoSomethingView.class)
+public class SLSBTwo implements DoSomethingView {
+
+    private static Logger logger = Logger.getLogger(SLSBTwo.class);
+
+    @PostConstruct
+    public void onConstruct() throws Exception {
+        this.doSomething();
+    }
+
+    @Override
+    public void doSomething() {
+        logger.info(this.getClass().getName() + "#doSomething()");
+    }
+
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/service/ServiceA.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/service/ServiceA.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/service/ServiceA.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,60 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.service;
+
+import org.jboss.ejb3.annotation.Service;
+import org.jboss.logging.Logger;
+
+import javax.annotation.PostConstruct;
+import javax.ejb.EJB;
+
+/**
+ * User: jpai
+ */
+ at Service
+public class ServiceA {
+
+    private static Logger logger = Logger.getLogger(ServiceA.class);
+
+    @EJB (beanName = "SLSBOne")
+    private DoSomethingView slsbOne;
+
+    @PostConstruct
+    public void onConstruct() throws Exception {
+        this.slsbOne.doSomething();
+    }
+
+    public void start() throws Exception {
+        this.slsbOne.doSomething();
+    }
+    
+    public void doSomething() {
+        logger.info(this.getClass().getName() + "#doSomething()");
+    }
+
+    public String echo(String msg) {
+        logger.info("Echo " + msg);
+        return msg;
+    }
+
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/service/SimpleSingleton.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/service/SimpleSingleton.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/service/SimpleSingleton.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,63 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.service;
+
+import org.jboss.ejb3.annotation.RemoteBinding;
+import org.jboss.logging.Logger;
+
+import javax.annotation.PostConstruct;
+import javax.ejb.EJB;
+import javax.ejb.Remote;
+import javax.ejb.Singleton;
+
+/**
+ * User: jpai
+ */
+ at Singleton
+ at Remote (SingletonBeanRemoteView.class)
+ at RemoteBinding (jndiBinding = SimpleSingleton.JNDI_NAME)
+public class SimpleSingleton implements SingletonBeanRemoteView {
+
+    public static final String JNDI_NAME = "SimpleSingleton-remote-view";
+
+    private static Logger logger = Logger.getLogger(SimpleSingleton.class);
+
+    @EJB (name = "SLSBTwo")
+    private DoSomethingView slsbTwo;
+
+    @PostConstruct
+    public void onConstruct() throws Exception {
+        slsbTwo.doSomething();
+    }
+
+    @Override
+    public void doSomething() {
+        logger.info(this.getClass().getName() + "#doSomething()");
+    }
+
+    @Override
+    public String echo(String msg) {
+        logger.info("Echo " + msg);
+        return msg;
+    }
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/service/SingletonBeanRemoteView.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/service/SingletonBeanRemoteView.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/service/SingletonBeanRemoteView.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,33 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.service;
+
+/**
+ * User: jpai
+ */
+public interface SingletonBeanRemoteView {
+
+    void doSomething();
+
+    String echo(String msg);
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/service/unit/ServiceDependencyGraphStressTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/service/unit/ServiceDependencyGraphStressTestCase.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/service/unit/ServiceDependencyGraphStressTestCase.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,57 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.service.unit;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+/**
+ * User: jpai
+ */
+ at RunWith(Suite.class)
+ at Suite.SuiteClasses({
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class,
+        ServiceDependencyGraphTestCase.class
+})
+public class ServiceDependencyGraphStressTestCase {
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/service/unit/ServiceDependencyGraphTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/service/unit/ServiceDependencyGraphTestCase.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/service/unit/ServiceDependencyGraphTestCase.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,54 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.service.unit;
+
+import org.jboss.test.JBossTestCase;
+import org.jboss.test.ejb3.service.SimpleSingleton;
+import org.jboss.test.ejb3.service.SingletonBeanRemoteView;
+
+import javax.naming.InitialContext;
+
+/**
+ * User: jpai
+ */
+public class ServiceDependencyGraphTestCase extends JBossTestCase {
+
+    public ServiceDependencyGraphTestCase(String name) {
+        super(name);
+    }
+
+    public void testStartupSingletonBeanAccess() throws Exception {
+        this.deploy("ejbthree2227-service.ear");
+        try {
+            final SingletonBeanRemoteView singletonBean = InitialContext.doLookup(SimpleSingleton.JNDI_NAME);
+            singletonBean.doSomething();
+            final String message = "Hello world!";
+            final String reply = singletonBean.echo(message);
+            assertEquals("Unexpected reply from singleton bean", message, reply);
+        } finally {
+            this.undeploy("ejbthree2227-service.ear");
+        }
+
+    }
+
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/DoSomethingView.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/DoSomethingView.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/DoSomethingView.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.singleton.startup;
+
+/**
+ * User: jpai
+ */
+public interface DoSomethingView {
+
+    void doSomething();
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SLSBOne.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SLSBOne.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SLSBOne.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,54 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.singleton.startup;
+
+import org.jboss.logging.Logger;
+
+import javax.annotation.PostConstruct;
+import javax.ejb.EJB;
+import javax.ejb.Local;
+import javax.ejb.Stateless;
+
+/**
+ * User: jpai
+ */
+ at Stateless
+ at Local (DoSomethingView.class)
+public class SLSBOne implements DoSomethingView {
+
+    private static Logger logger = Logger.getLogger(SLSBOne.class);
+
+    @EJB (beanName = "SLSBTwo")
+    private DoSomethingView slsbTwo;
+
+    @PostConstruct
+    public void onConstruct() throws Exception {
+        this.slsbTwo.doSomething();
+    }
+
+    @Override
+    public void doSomething() {
+        logger.info(this.getClass().getName() + "#doSomething()");
+    }
+
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SLSBTwo.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SLSBTwo.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SLSBTwo.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,51 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.singleton.startup;
+
+import org.jboss.logging.Logger;
+
+import javax.annotation.PostConstruct;
+import javax.ejb.EJB;
+import javax.ejb.Local;
+import javax.ejb.Stateless;
+
+/**
+ * User: jpai
+ */
+ at Stateless
+ at Local(DoSomethingView.class)
+public class SLSBTwo implements  DoSomethingView {
+
+    private static Logger logger = Logger.getLogger(SLSBTwo.class);
+
+    @PostConstruct
+    public void onConstruct() throws Exception {
+        this.doSomething();
+    }
+
+    @Override
+    public void doSomething() {
+        logger.info(this.getClass().getName() + "#doSomething()");
+    }
+
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SingletonB.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SingletonB.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SingletonB.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,62 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.singleton.startup;
+
+import org.jboss.ejb3.annotation.RemoteBinding;
+import org.jboss.logging.Logger;
+
+import javax.annotation.PostConstruct;
+import javax.ejb.EJB;
+import javax.ejb.Remote;
+import javax.ejb.Singleton;
+
+/**
+ * User: jpai
+ */
+ at Singleton
+ at Remote (SingletonBeanRemoteView.class)
+ at RemoteBinding (jndiBinding = SingletonB.JNDI_NAME)
+public class SingletonB implements SingletonBeanRemoteView {
+
+    public static final String JNDI_NAME = "SingletonB-remote-view";
+
+    private static Logger logger = Logger.getLogger(SingletonB.class);
+
+    @EJB (name = "SLSBTwo")
+    private DoSomethingView slsbTwo;
+
+    @PostConstruct
+    public void onConstruct() throws Exception {
+        slsbTwo.doSomething();
+    }
+    
+    public void doSomething() {
+        logger.info(this.getClass().getName() + "#doSomething()");
+    }
+
+    @Override
+    public String echo(String msg) {
+        logger.info("Echo " + msg);
+        return msg;
+    }
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SingletonBeanRemoteView.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SingletonBeanRemoteView.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/SingletonBeanRemoteView.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,33 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.singleton.startup;
+
+/**
+ * User: jpai
+ */
+public interface SingletonBeanRemoteView {
+
+    void doSomething();
+
+    String echo(String msg);
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/StartupSingletonA.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/StartupSingletonA.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/StartupSingletonA.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,60 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.singleton.startup;
+
+import org.jboss.ejb3.annotation.RemoteBinding;
+import org.jboss.logging.Logger;
+
+import javax.annotation.PostConstruct;
+import javax.ejb.EJB;
+import javax.ejb.Remote;
+import javax.ejb.Singleton;
+import javax.ejb.Startup;
+
+/**
+ * User: jpai
+ */
+ at Startup
+ at Singleton
+public class StartupSingletonA {
+
+    private static Logger logger = Logger.getLogger(StartupSingletonA.class);
+
+    @EJB (beanName = "SLSBOne")
+    private DoSomethingView slsbOne;
+
+    @PostConstruct
+    public void onConstruct() throws Exception {
+        this.slsbOne.doSomething();
+    }
+
+    public void doSomething() {
+        logger.info(this.getClass().getName() + "#doSomething()");
+    }
+
+    public String echo(String msg) {
+        logger.info("Echo " + msg);
+        return msg;
+    }
+
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/unit/StartupSingletonDependencyGraphTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/unit/StartupSingletonDependencyGraphTestCase.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/unit/StartupSingletonDependencyGraphTestCase.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,54 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.singleton.startup.unit;
+
+import org.jboss.test.JBossTestCase;
+import org.jboss.test.ejb3.singleton.startup.SingletonB;
+import org.jboss.test.ejb3.singleton.startup.SingletonBeanRemoteView;
+
+import javax.naming.InitialContext;
+
+/**
+ * User: jpai
+ */
+public class StartupSingletonDependencyGraphTestCase extends JBossTestCase {
+
+    public StartupSingletonDependencyGraphTestCase(String name) {
+        super(name);
+    }
+
+    public void testStartupSingletonBeanAccess() throws Exception {
+        this.deploy("ejbthree2227.ear");
+        try {
+            final SingletonBeanRemoteView singletonBean = InitialContext.doLookup(SingletonB.JNDI_NAME);
+            singletonBean.doSomething();
+            final String message = "Hello world!";
+            final String reply = singletonBean.echo(message);
+            assertEquals("Unexpected reply from singleton bean", message, reply);
+        } finally {
+            this.undeploy("ejbthree2227.ear");
+        }
+
+    }
+
+}

Added: trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/unit/StartupSingletonDependencyStressTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/unit/StartupSingletonDependencyStressTestCase.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/ejb3/singleton/startup/unit/StartupSingletonDependencyStressTestCase.java	2011-07-29 13:32:24 UTC (rev 111882)
@@ -0,0 +1,57 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.ejb3.singleton.startup.unit;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+/**
+ * User: jpai
+ */
+ at RunWith(Suite.class)
+ at Suite.SuiteClasses({
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class,
+        StartupSingletonDependencyGraphTestCase.class
+})
+public class StartupSingletonDependencyStressTestCase {
+}



More information about the jboss-cvs-commits mailing list