Thomas Caudrelier
03/07/2025, 2:38 PM@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. 👍Tom
03/14/2025, 12:43 PM