[jboss-cvs] JBossAS SVN: r93123 - projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/jbosgi99.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Sep 2 06:15:43 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-09-02 06:15:43 -0400 (Wed, 02 Sep 2009)
New Revision: 93123

Modified:
   projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/jbosgi99/OSGI99TestCase.java
Log:
bundleA.getState() == Bundle.INSTALLED || bundleA.getState() == Bundle.RESOLVED

Modified: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/jbosgi99/OSGI99TestCase.java
===================================================================
--- projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/jbosgi99/OSGI99TestCase.java	2009-09-02 10:10:04 UTC (rev 93122)
+++ projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/jbosgi99/OSGI99TestCase.java	2009-09-02 10:15:43 UTC (rev 93123)
@@ -24,6 +24,7 @@
 //$Id: OSGI39TestCase.java 87103 2009-04-09 22:18:31Z thomas.diesler at jboss.com $
 
 import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
 
 import org.jboss.osgi.spi.testing.OSGiBundle;
 import org.jboss.osgi.spi.testing.OSGiRuntime;
@@ -63,7 +64,7 @@
    public void testInstallOnly() throws Exception
    {
       OSGiBundle bundleA = runtime.installBundle("jbosgi99-bundleA.jar");
-      assertEquals("Bundle installed", Bundle.INSTALLED, bundleA.getState());
+      assertTrue("Bundle installed", bundleA.getState() == Bundle.INSTALLED || bundleA.getState() == Bundle.RESOLVED);
 
       bundleA.start();
       assertEquals("Bundle active", Bundle.ACTIVE, bundleA.getState());




More information about the jboss-cvs-commits mailing list