我想为我的控制器编写一个测试。我需要向 get() 传递一个参数。我该怎么做?
控制器:
@GetMapping("/getClientById")
public ModelAndView getClientById(Integer id){
return new ModelAndView("getClientById", "client", clientService.getClientById(id));
}
测试方法:
given().header("Content-Type", "application/x-www-form-urlencoded")
.when()
.get("getClientById/")//How can I put here an ID ?
.then()
.statusCode(200);
慕斯709654
相关分类