open class ViewResultMatchers
Factory for assertions on the selected view.
An instance of this class is typically accessed via MockMvcResultMatchers#view.
Author
Rossen Stoyanchev
Since
3.2
open fun name(matcher: Matcher<in String>): ResultMatcher
Assert the selected view name with the given Hamcrest Matcher. open fun name(expectedViewName: String): ResultMatcher
Assert the selected view name. |