Package com.alibaba.citrus.service.form.impl

Examples of com.alibaba.citrus.service.form.impl.FormServiceImpl


    }

    @Test
    public void init_requestIsNotProxy() {
        try {
            new FormServiceImpl(createMock(HttpServletRequest.class));
            fail();
        } catch (IllegalArgumentException e) {
            assertThat(e, exception("expects a proxy delegating to a real object, but got an object of type "));
        }
    }
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.service.form.impl.FormServiceImpl

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.