Examples of TurbineRunDataResolverFactory


Examples of com.alibaba.citrus.turbine.dataresolver.impl.TurbineRunDataResolverFactory

import org.junit.Test;

public class TurbineRunDataResolverTests extends AbstractDataResolverTests {
    @Test
    public void nodeps() {
        TurbineRunDataResolverFactory resolverFactory = new TurbineRunDataResolverFactory(null);

        try {
            resolverFactory.getDataResolver(new DataResolverContext(String.class, null, null));
            fail();
        } catch (IllegalArgumentException e) {
            assertThat(e, exception("no HttpServletRequest proxy defined"));
        }
    }
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.