Spring Boot - Testing Spring Boot Applications
Identify the error in this MockMvc test code snippet:
mockMvc.perform(post("/submit"))
.andExpect(status().isOk)
.andExpect(content().string("Success"));