Package org.apache.tuscany.host.rmi

Examples of org.apache.tuscany.host.rmi.RMIHost.findService()


    public void testInvokeTarget() throws InvocationTargetException, RMIHostRuntimeException, RMIHostException, IllegalArgumentException,
            IllegalAccessException, SecurityException, NoSuchMethodException {
        Method method = Object.class.getDeclaredMethod("toString", new Class[] {});
        RMIHost host = createMock(RMIHost.class);
        expect(host.findService(null, null, null)).andReturn(new Remote() {
        });
        replay(host);
        RMIInvoker invoker = new RMIInvoker(host, null, null, null, method);
        assertNotNull(invoker.invokeTarget(new Object[] {}));
    }
View Full Code Here

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.