wiremock-spring-boot icon indicating copy to clipboard operation
wiremock-spring-boot copied to clipboard

WireMock Spring Boot drastically simplifies testing HTTP clients in Spring Boot & Junit 5 based integration tests.

Results 21 wiremock-spring-boot issues
Sort by recently updated
recently updated
newest added

I'm looking at how to replace `spring-cloud-contract-wiremock` with `wiremock-spring-boot` in one of my projects (scordio/spring-batch-notion#25) and I noticed the configuration becomes a little more verbose. Specifically: * `@AutoConfigureWireMock(port = 0)`...

I had to add this code, would be nice if this was added to the tool. ```java private @Value("${wiremock.server.url}") String wireMockUrl; @PostConstruct public void basePostConstruct() throws MalformedURLException { WireMock.configureFor(new URL(wireMockUrl).getPort());...

Looks like it only supports mappings from classpath locations. `spring-cloud-contract` supports having them in any folder, would ease migration to this library if we don't have to moven them. Would...

The property `wiremock.server.port` is provided by `spring-cloud-contract`. To ease migration from that to this library, it would be nice if this library provided that property.

Hi, thanks for this project as it looks like it can make handling WireMock within Spring Boot tests much easier! We have a somewhat different use-case: we use JUnit5 to...

hi @maciejwalkowiak , here is the pull request for https://github.com/maciejwalkowiak/wiremock-spring-boot/issues/28. Please let me know what else I can do for this pull request to be accepted.