[WireMock Spring Boot Integration] Hello, followin...
# general
t
[WireMock Spring Boot Integration] Hello, following this *great* article about the Spring Boot Integration, I was wondering if there were any plans for an integration to simplify the setup for saving stubs? If I'm not wrong, as of today, we have to define
Copy code
@Test
void myIntegrationTestName() throws Exception {
    wireMock.startRecording("<http://the_real_targeted_url>...");
    // the actuel test here
    ...
    wireMock.saveMappings();
    wireMock.stopRecording();
}
That works great, but that could be a bit long when we have to update an integration tests that contain several dependencies. Is there something plan yet? By the way, thanks for your amazing work. 👍
1
t
Can you elaborate where you feel the complexity is? Do you mean where you have multiple APIs called during the test and you want to record all at the same time?