Package org.springframework.test.web.servlet
Types
MockHttpServletRequestDsl
Link copied to clipboard
open class MockHttpServletRequestDsl
Content copied to clipboard
Provide a MockHttpServletRequestBuilder Kotlin DSL in order to be able to write idiomatic Kotlin code.
MockMultipartHttpServletRequestDsl
Link copied to clipboard
Provide a MockMultipartHttpServletRequestBuilder Kotlin DSL in order to be able to write idiomatic Kotlin code.
MockMvcResultHandlersDsl
Link copied to clipboard
class MockMvcResultHandlersDsl
Content copied to clipboard
Provide a MockMvcResultHandlers Kotlin DSL in order to be able to write idiomatic Kotlin code.
MockMvcResultMatchersDsl
Link copied to clipboard
class MockMvcResultMatchersDsl
Content copied to clipboard
Provide a MockMvcResultMatchers Kotlin DSL in order to be able to write idiomatic Kotlin code.
ResultActionsDsl
Link copied to clipboard
class ResultActionsDsl
Content copied to clipboard
Provide a ResultActions Kotlin DSL in order to be able to write idiomatic Kotlin code.
Functions
delete
Link copied to clipboard
fun MockMvc.delete(uri: URI, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
fun MockMvc.delete(urlTemplate: String, vararg vars: Any?, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
get
Link copied to clipboard
fun MockMvc.get(uri: URI, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
fun MockMvc.get(urlTemplate: String, vararg vars: Any?, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
head
Link copied to clipboard
fun MockMvc.head(uri: URI, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
fun MockMvc.head(urlTemplate: String, vararg vars: Any?, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
multipart
Link copied to clipboard
fun MockMvc.multipart(uri: URI, dsl: MockMultipartHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
fun MockMvc.multipart(urlTemplate: String, vararg vars: Any?, dsl: MockMultipartHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
options
Link copied to clipboard
fun MockMvc.options(uri: URI, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
fun MockMvc.options(urlTemplate: String, vararg vars: Any?, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
patch
Link copied to clipboard
fun MockMvc.patch(uri: URI, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
fun MockMvc.patch(urlTemplate: String, vararg vars: Any?, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
post
Link copied to clipboard
fun MockMvc.post(uri: URI, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
fun MockMvc.post(urlTemplate: String, vararg vars: Any?, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
put
Link copied to clipboard
fun MockMvc.put(uri: URI, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
fun MockMvc.put(urlTemplate: String, vararg vars: Any?, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
request
Link copied to clipboard
fun MockMvc.request(method: HttpMethod, uri: URI, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard
fun MockMvc.request(method: HttpMethod, urlTemplate: String, vararg vars: Any?, dsl: MockHttpServletRequestDsl.() -> Unit = {}): ResultActionsDsl
Content copied to clipboard