'How to write mock for HttpServletRequest re

@PostMapping
public ResponseEntity<String> createEntity(HttpServletRequest request,
                                       @RequestBody(required = false) String payload) {
    return EntryControllerFunctions.createEntry(entityService, request, payload, 
                                                 AppConstants.ENTITY_CREATE_PAYLOAD,
                                                  AppConstants.ENTITES_URL, logger);
}

how to write mock unit for HttpServletReqeust in this code



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source