How can I simulate slow backend responses in integration tests using MockRestServiceServer? For example:
testServer = MockRestServiceServer.createServer(asyncClient);
testServer.expect(requestTo('http://dummy.api/endpoint'))
.andExpect(method(HttpMethod.GET))
.andRespond(withDelayedResponse(sampleData));
Is there a way to introduce timeout delays?