Solved! I have solved it this way:
@Test
public void test() {
RestAssured.get("/foos").then().assertThat()
.body("size()", is(2));
}
Solved! I have solved it this way:
@Test
public void test() {
RestAssured.get("/foos").then().assertThat()
.body("size()", is(2));
}