@Test public void contact() throws Exception { mvc.perform(get("/contactlist")) .andExpect(status().isOk()) .andExpect(content().string(containsString("John"))) .andExpect(content().string(containsString("Jane"))); }