Unit Testing with Auto-generated REST Clients
Oftentimes in our application we have to call HTTP endpoints to send or request data. If we are lucky, the service maintainer provides a client implementation to make it easier to use the provided REST API from our application directly. If we are less lucky there is an OpenApi spec that we can use to generate the client so we don’t have to craft the requests and process the responses manually.
Read more