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

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


public class FormResolverTests extends AbstractDataResolverTests {
    private Form form;

    @Test
    public void nodeps() {
        FormResolverFactory resolverFactory = new FormResolverFactory(null);

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

TOP

Related Classes of com.alibaba.citrus.turbine.dataresolver.impl.FormResolverFactory

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.