Package org.codehaus.xfire.service.binding

Source Code of org.codehaus.xfire.service.binding.StreamReaderServiceTest

package org.codehaus.xfire.service.binding;

import org.codehaus.xfire.service.Service;
import org.codehaus.xfire.test.AbstractXFireTest;

public class StreamReaderServiceTest extends AbstractXFireTest
{
    protected void setUp()
        throws Exception
    {
        super.setUp();
       
        Service service = getServiceFactory().create(StreamReaderService.class);
        getServiceRegistry().register(service);
    }

    public void testStreamReaderService() throws Exception
    {
        invokeService("StreamReaderService", "/org/codehaus/xfire/echo11.xml");
    }
}
TOP

Related Classes of org.codehaus.xfire.service.binding.StreamReaderServiceTest

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.