wiremock Wiremock and Response Transformer I wanted to test a scenario where: For the first x calls respond with y Then for x+1 respond with z Wiremock by itself doesn't provide a direct way to to stub
junit REST API Integration Testing with Wiremock Lets say you have a service (customer-service) that calls another service (account-service) over HTTP, gets the response from account-service, does some munging with the data and returns it back to the UI. Now