June 2017
Intermediate to advanced
496 pages
14h 4m
English
The complete Test method is shown in the following code:
@Test public void basicTest() throws Exception { this.mockMvc .perform( get("/welcome-model-map") .accept(MediaType.parseMediaType ("application/html;charset=UTF-8"))) .andExpect(model().attribute("name", "XYZ")) .andExpect(view().name("welcome-model-map")); }
A few important things to note:
Read now
Unlock full access