Author: adietish
Date: 2012-09-14 12:31:36 -0400 (Fri, 14 Sep 2012)
New Revision: 43700
Modified:
trunk/openshift/tests/org.jboss.tools.openshift.express.test/src/org/jboss/tools/openshift/express/test/EmbedCartridgeStrategyTest.java
Log:
[JBIDE-12622] fixed unmarshalling problem if gear_profile:null
Modified:
trunk/openshift/tests/org.jboss.tools.openshift.express.test/src/org/jboss/tools/openshift/express/test/EmbedCartridgeStrategyTest.java
===================================================================
---
trunk/openshift/tests/org.jboss.tools.openshift.express.test/src/org/jboss/tools/openshift/express/test/EmbedCartridgeStrategyTest.java 2012-09-14
16:30:16 UTC (rev 43699)
+++
trunk/openshift/tests/org.jboss.tools.openshift.express.test/src/org/jboss/tools/openshift/express/test/EmbedCartridgeStrategyTest.java 2012-09-14
16:31:36 UTC (rev 43700)
@@ -21,6 +21,7 @@
import java.util.HashSet;
import java.util.List;
import java.util.Set;
+import java.util.concurrent.Future;
import org.jboss.tools.openshift.express.internal.core.EmbedCartridgeStrategy;
import org.junit.Before;
@@ -355,8 +356,7 @@
@Override
public void removeEmbeddedCartridge(IEmbeddableCartridge cartridge) throws
OpenShiftException {
- // TODO Auto-generated method stub
-
+ throw new UnsupportedOperationException();
}
@Override
@@ -496,6 +496,11 @@
public Session getSSHSession() {
throw new UnsupportedOperationException();
}
+
+ @Override
+ public Future<Boolean> waitForAccessibleAsync(long timeout) throws
OpenShiftException {
+ throw new UnsupportedOperationException();
+ }
}
private static final class DomainFake implements IDomain {
Show replies by date