Spring Boot - Testing Spring Boot Applications
You want to test a controller that returns a list of users as JSON. Which MockMvc assertion verifies the JSON array size is 3?
jsonPath("$", hasSize(n)).hasSize(3) correctly asserts the array length is 3.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions