Example usage for org.springframework.mock.web MockHttpServletRequest getServletContext

List of usage examples for org.springframework.mock.web MockHttpServletRequest getServletContext

Introduction

In this page you can find the example usage for org.springframework.mock.web MockHttpServletRequest getServletContext.

Prototype

@Override
public ServletContext getServletContext() 

Source Link

Document

Return the ServletContext that this request is associated with.

Usage

From source file:org.springframework.test.web.servlet.htmlunit.HtmlUnitRequestBuilderTests.java

@Test
public void buildRequestServletContext() throws Exception {
    MockHttpServletRequest actualRequest = requestBuilder.buildRequest(servletContext);

    assertThat(actualRequest.getServletContext(), equalTo(servletContext));
}