Package org.springframework.test.web.server

Examples of org.springframework.test.web.server.MockFilterChain


  @Before
  public void setup() {
    request = new MockHttpServletRequest();
    request.setContextPath("/context");
    response = new MockHttpServletResponse();
    filterChain = new MockFilterChain();
    delegate = new MockFilter();
  }
View Full Code Here


    assertThat(delegate.response, equalTo((ServletResponse) null));
    assertThat(delegate.chain, equalTo((FilterChain) null));

    assertThat(filterChain.getRequest(), equalTo((ServletRequest) request));
    assertThat(filterChain.getResponse(), equalTo((ServletResponse) response));
    filterChain = new MockFilterChain();
  }
View Full Code Here

TOP

Related Classes of org.springframework.test.web.server.MockFilterChain

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.