Package org.eclipse.ecf.tests.remoteservice.r_osgi

Source Code of org.eclipse.ecf.tests.remoteservice.r_osgi.ROsgiConcatConsumerTest

/*******************************************************************************
* Copyright (c) 2009 EclipseSource and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*   EclipseSource - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.tests.remoteservice.r_osgi;

import org.eclipse.ecf.core.IContainer;
import org.eclipse.ecf.tests.remoteservice.AbstractConcatConsumerTestCase;

public class ROsgiConcatConsumerTest extends AbstractConcatConsumerTestCase {

  protected void setUp() throws Exception {
    super.setUp();
    IContainer container = createContainer("r-osgi://localhost:9279");
    rsContainer = createRemoteServiceContainer(container);
    targetID = createID(container, R_OSGi.HOST_CONTAINER_ENDPOINT_ID);
  }

  protected String getContainerType() {
    return R_OSGi.CONSUMER_CONTAINER_TYPE;
  }

  public void testGetRemoteServiceWithLocallyRegisteredService()
  throws Exception {
    // This test case is inappropriate for r-osgi, as it behaves differently
    // than other remote service API providers wrt local remote service registration.
  }
}
TOP

Related Classes of org.eclipse.ecf.tests.remoteservice.r_osgi.ROsgiConcatConsumerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.