如何编写文本案例以获得映射方法?

时间:2019-08-22 07:07:22

标签: spring-boot-test

如何编写测试用例

@GetMapping(“ / batchs / {id}”)     public可选的getBatch(@PathVariable String id)引发ParseException {

    System.out.println(" the id from postman is "+id);
    SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
    Date date= formatter.parse(id);
    System.out.println(date);
    return batchService.getBatch(date);

0 个答案:

没有答案