Package com.alibaba.citrus.turbine.dataresolver.impl

Examples of com.alibaba.citrus.turbine.dataresolver.impl.ParameterResolverFactory$ParameterResolver


import org.springframework.beans.propertyeditors.CustomNumberEditor;

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

        try {
            resolverFactory.getDataResolver(new DataResolverContext(String.class, null, null));
            fail();
        } catch (IllegalArgumentException e) {
            assertThat(e, exception("no ParserRequestContext defined"));
        }
    }
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.turbine.dataresolver.impl.ParameterResolverFactory$ParameterResolver

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.