JsonPath를 사용하여 회원 수를 계산할 수 있습니까?
스프링 mvc 테스트를 사용하여 생성하는 컨트롤러를 테스트하고 있습니다.
{"foo": "oof", "bar": "rab"}
와
standaloneSetup(new FooController(fooService)).build()
.perform(get("/something").accept(MediaType.APPLICATION_JSON)).andExpect(status().isOk())
.andExpect(jsonPath("$.foo").value("oof"))
.andExpect(jsonPath("$.bar").value("rab"));
생성 된 json에 다른 멤버가 없는지 확인하고 싶습니다. jsonPath를 사용하여 개수를 세는 것이 좋습니다. 가능할까요? 대체 솔루션도 환영합니다.
hamcrest-all
의존성으로 만 사용hamcrest-library
: code.google.com/p/hamcrest/wiki/HamcrestDistributables을