MockMvcResultMatchers を使用してコントローラー クラスをテストしています。
これがサンプルコードです
RequestBuilder request = get("/employee/")
.contentType(MediaType.APPLICATION_JSON)
.accept(APPLICATION_JSON_UTF8);
mockMvc
.perform(request)
.andExpect(status().isOk())
.andExpect(jsonPath("$.total").exists());
しかし、どうすれば $.total 値を数値と比較できますか?
つまり、$.total > 0 であることを確認する方法はありますか?