Как написать тестовые сценарии mockito для API остальных в весенней загрузке ..? - PullRequest
0 голосов
/ 22 мая 2019
 @RequestMapping(value = "/v0.1/getFySectionDetails", method = RequestMethod.POST)
 public ResponseEntity<?> getFyMonthlyPurchases(@RequestBody GstServicesRequestModel gstServicesRequestModel) {
  String gstin = gstServicesRequestModel.getGstin();
  BigInteger reportId = gstServicesRequestModel.getReportId();
  logger.info("Gstin, ReportID : "+gstin+", "+reportId);
  CalculationsVO calculationsVo = gstr1DataHandler.getFySectionDetails(gstin, reportId, null, null, null, null, null, null);
   return new ResponseEntity<CalculationsVO>(calculationsVo, HttpStatus.OK);
    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...