Package org.codehaus.xfire.transport.local

Source Code of org.codehaus.xfire.transport.local.LocalTransportTest

package org.codehaus.xfire.transport.local;

import org.codehaus.xfire.test.AbstractXFireTest;
import org.codehaus.xfire.transport.Channel;

public class LocalTransportTest
    extends AbstractXFireTest
{
    public void testLocalTransport() throws Exception
    {
        LocalTransport transport = new LocalTransport();
       
        Channel c1 = transport.createChannel("uri1");
        Channel c2 = transport.createChannel("uri1");
       
        assertEquals(c1, c2);
       
        transport.dispose();
    }
}
TOP

Related Classes of org.codehaus.xfire.transport.local.LocalTransportTest

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.