Package org.apache.tuscany.spi.wire

Examples of org.apache.tuscany.spi.wire.RuntimeWire


* @version $Rev: 441886 $ $Date: 2006-09-09 18:58:51 -0700 (Sat, 09 Sep 2006) $
*/
public class WireObjectFactoryTestCase extends TestCase {

    public void testCreateInstance() throws Exception {
        RuntimeWire wire = createMock(RuntimeWire.class);
        WireService service = createMock(WireService.class);
        service.createProxy(wire);
        expectLastCall().andReturn(null);
        replay(service);
        WireObjectFactory factory = new WireObjectFactory(wire, service);
View Full Code Here

TOP

Related Classes of org.apache.tuscany.spi.wire.RuntimeWire

Copyright © 2018 www.massapicom. 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.