[jboss-cvs] JBossAS SVN: r66938 - branches/JBPAPP_4_2_0_GA_CP01_JBPAPP-364/ejb3/src/test/org/jboss/ejb3/test/mdbsessionpoolclear/unit.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Nov 9 14:26:39 EST 2007


Author: bdecoste
Date: 2007-11-09 14:26:39 -0500 (Fri, 09 Nov 2007)
New Revision: 66938

Modified:
   branches/JBPAPP_4_2_0_GA_CP01_JBPAPP-364/ejb3/src/test/org/jboss/ejb3/test/mdbsessionpoolclear/unit/MDBUnitTestCase.java
Log:
[JBPAPP-387] [ASPATCH-240] TIBCO EMS integration - removed test for numActiveSessions. Non-deterministic results based on timing

Modified: branches/JBPAPP_4_2_0_GA_CP01_JBPAPP-364/ejb3/src/test/org/jboss/ejb3/test/mdbsessionpoolclear/unit/MDBUnitTestCase.java
===================================================================
--- branches/JBPAPP_4_2_0_GA_CP01_JBPAPP-364/ejb3/src/test/org/jboss/ejb3/test/mdbsessionpoolclear/unit/MDBUnitTestCase.java	2007-11-09 18:46:41 UTC (rev 66937)
+++ branches/JBPAPP_4_2_0_GA_CP01_JBPAPP-364/ejb3/src/test/org/jboss/ejb3/test/mdbsessionpoolclear/unit/MDBUnitTestCase.java	2007-11-09 19:26:39 UTC (rev 66938)
@@ -96,8 +96,8 @@
       assertEquals(1, mbeans.size());
       ObjectInstance jmsContainerInvokerInstance = (ObjectInstance)mbeans.iterator().next();
       ObjectName jmsContainerInvoker = jmsContainerInvokerInstance.getObjectName();
-      int numActiveSessions = (Integer)server.getAttribute(jmsContainerInvoker, "NumActiveSessions");
-      assertEquals(1, numActiveSessions);
+ //     int numActiveSessions = (Integer)server.getAttribute(jmsContainerInvoker, "NumActiveSessions");
+ //     assertEquals(1, numActiveSessions);
       boolean forceClear = (Boolean)server.getAttribute(jmsContainerInvoker, "ForceClearOnShutdown");
       assertTrue(forceClear);
       int forceClearAttempts = (Integer)server.getAttribute(jmsContainerInvoker, "ForceClearAttempts");
@@ -112,8 +112,8 @@
 
       Thread.sleep(60 * 1000);
       
-      numActiveSessions = (Integer)server.getAttribute(jmsContainerInvoker, "NumActiveSessions");
-      assertEquals(1, numActiveSessions);
+//      numActiveSessions = (Integer)server.getAttribute(jmsContainerInvoker, "NumActiveSessions");
+//      assertEquals(1, numActiveSessions);
       
       assertEquals(1, status.queueFired());
       




More information about the jboss-cvs-commits mailing list