Uses of Class
org.springframework.test.web.servlet.MockMvc
Packages that use MockMvc
Package
Description
Contains client-side REST testing support.
Contains server-side support for testing Spring MVC applications.
Support for testing Spring MVC applications via
WebTestClient
with MockMvc
for server request
handling.Server-side support for testing Spring MVC applications with
MockMvc
and HtmlUnit.Server-side support for testing Spring MVC applications with
MockMvc
and the Selenium HtmlUnitDriver
.Contains built-in
MockMvcBuilder
implementations.-
Uses of MockMvc in org.springframework.test.web.client
Constructors in org.springframework.test.web.client with parameters of type MockMvc -
Uses of MockMvc in org.springframework.test.web.servlet
Methods in org.springframework.test.web.servlet that return MockMvcModifier and TypeMethodDescriptionMockMvcBuilder.build()
Build aMockMvc
instance.protected final MockMvc
MockMvcBuilderSupport.createMockMvc
(Filter[] filters, MockServletConfig servletConfig, WebApplicationContext webAppContext, RequestBuilder defaultRequestBuilder, Charset defaultResponseCharacterEncoding, List<ResultMatcher> globalResultMatchers, List<ResultHandler> globalResultHandlers, List<DispatcherServletCustomizer> dispatcherServletCustomizers) Delegates toMockMvcBuilderSupport.createMockMvc(Filter[], MockServletConfig, WebApplicationContext, RequestBuilder, List, List, List)
for creation of theMockMvc
instance and configures that instance with the supplieddefaultResponseCharacterEncoding
.protected final MockMvc
MockMvcBuilderSupport.createMockMvc
(Filter[] filters, MockServletConfig servletConfig, WebApplicationContext webAppContext, RequestBuilder defaultRequestBuilder, List<ResultMatcher> globalResultMatchers, List<ResultHandler> globalResultHandlers, List<DispatcherServletCustomizer> dispatcherServletCustomizers) -
Uses of MockMvc in org.springframework.test.web.servlet.client
Methods in org.springframework.test.web.servlet.client with parameters of type MockMvcModifier and TypeMethodDescriptionstatic WebTestClient.Builder
Begin creating aWebTestClient
by providing an already initializedMockMvc
instance to use as the server.Constructors in org.springframework.test.web.servlet.client with parameters of type MockMvc -
Uses of MockMvc in org.springframework.test.web.servlet.htmlunit
Methods in org.springframework.test.web.servlet.htmlunit with parameters of type MockMvcModifier and TypeMethodDescriptionstatic MockMvcWebClientBuilder
MockMvcWebClientBuilder.mockMvcSetup
(MockMvc mockMvc) Create a newMockMvcWebClientBuilder
based on the suppliedMockMvc
instance.Constructors in org.springframework.test.web.servlet.htmlunit with parameters of type MockMvcModifierConstructorDescriptionprotected
MockMvcWebClientBuilder
(MockMvc mockMvc) MockMvcWebConnection
(MockMvc mockMvc, com.gargoylesoftware.htmlunit.WebClient webClient) Create a new instance that assumes the context path of the application is""
(i.e., the root context).MockMvcWebConnection
(MockMvc mockMvc, com.gargoylesoftware.htmlunit.WebClient webClient, String contextPath) Create a new instance with the specified context path.protected
Create a new instance using the suppliedMockMvc
instance. -
Uses of MockMvc in org.springframework.test.web.servlet.htmlunit.webdriver
Methods in org.springframework.test.web.servlet.htmlunit.webdriver with parameters of type MockMvcModifier and TypeMethodDescriptionstatic MockMvcHtmlUnitDriverBuilder
MockMvcHtmlUnitDriverBuilder.mockMvcSetup
(MockMvc mockMvc) Create a newMockMvcHtmlUnitDriverBuilder
based on the suppliedMockMvc
instance.Constructors in org.springframework.test.web.servlet.htmlunit.webdriver with parameters of type MockMvc -
Uses of MockMvc in org.springframework.test.web.servlet.setup
Methods in org.springframework.test.web.servlet.setup that return MockMvc