Package org.apache.myfaces.test.mock

Examples of org.apache.myfaces.test.mock.MockExternalContext20


    if (FacesContext.getCurrentInstance() != null
        && FacesContext.getCurrentInstance() instanceof MockBaseFacesContext) {
      return FacesContext.getCurrentInstance();
    } else {

      ExternalContext ext = new MockExternalContext20((ServletContext) context, (HttpServletRequest) request,
          (HttpServletResponse) response) {

        public void setResponseBufferSize(int size) {
          ((MockHttpServletResponse) getResponse()).setBufferSize(size);
        }
View Full Code Here

TOP

Related Classes of org.apache.myfaces.test.mock.MockExternalContext20

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.