Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-02-25 09:00:31 +0000
committerslewis2009-02-25 09:00:31 +0000
commit0c5a97b8160620bcb5ce12097034263671f5c893 (patch)
treea7ba7d0d84ec7b89ede62d653a25800fbdf8e1a5
parentdf53dc7948ccc7a59568906bde1890cf750013a6 (diff)
downloadorg.eclipse.ecf-0c5a97b8160620bcb5ce12097034263671f5c893.tar.gz
org.eclipse.ecf-0c5a97b8160620bcb5ce12097034263671f5c893.tar.xz
org.eclipse.ecf-0c5a97b8160620bcb5ce12097034263671f5c893.zip
Further additions for RFC 119 impl
-rw-r--r--tests/bundles/org.eclipse.ecf.tests.osgi.services.distribution/src/org/eclipse/ecf/tests/osgi/services/distribution/GenericRemoteServiceRegisterTest.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/bundles/org.eclipse.ecf.tests.osgi.services.distribution/src/org/eclipse/ecf/tests/osgi/services/distribution/GenericRemoteServiceRegisterTest.java b/tests/bundles/org.eclipse.ecf.tests.osgi.services.distribution/src/org/eclipse/ecf/tests/osgi/services/distribution/GenericRemoteServiceRegisterTest.java
index 6b7ee8518..b960724fc 100644
--- a/tests/bundles/org.eclipse.ecf.tests.osgi.services.distribution/src/org/eclipse/ecf/tests/osgi/services/distribution/GenericRemoteServiceRegisterTest.java
+++ b/tests/bundles/org.eclipse.ecf.tests.osgi.services.distribution/src/org/eclipse/ecf/tests/osgi/services/distribution/GenericRemoteServiceRegisterTest.java
@@ -47,15 +47,12 @@ public class GenericRemoteServiceRegisterTest extends AbstractDistributionTest i
protected String getClientContainerName() {
return "ecf.generic.client";
}
-
-
public void testRegisterAllContainers() throws Exception {
Properties props = new Properties();
props.put(OSGI_REMOTE_INTERFACES, new String[] {OSGI_REMOTE_INTERFACES_WILDCARD});
registerDefaultService(props);
Thread.sleep(3000);
}
-
public void testRegisterServerContainer() throws Exception {
Properties props = new Properties();
props.put(OSGI_REMOTE_INTERFACES, new String[] {OSGI_REMOTE_INTERFACES_WILDCARD});
@@ -134,5 +131,4 @@ public class GenericRemoteServiceRegisterTest extends AbstractDistributionTest i
dstReg.unregister();
}
-
}

Back to the top