-
Just thinking, in one of the scenarios we have, the Wiremock standalone instance is used as either:
- a fallback when one of our real services goes down in development, or
- we just want to avoid de…
-
The flag ```failOnUnmatchedStubs``` on WireMockRule is not documented, but from the parameter name I would expect the semantics to be like this: If any of the defined stub mappings was not hit by a re…
-
Transformer cannot be used standalone!!?
following arg results in exeption
`--extensions com.github.tomakehurst.wiremock.extension.responsetemplating.ResponseTemplateTransformer`
would be solve…
-
Notice
.sc-build
```
- 1.3.6.BUILD-SNAPSHOT
+ 1.3.6.RELEASE
```
.sample
```
- 1.2.0.BUILD-SNAPSHOT
- Edgware.BUILD-SNAPSHOT
+ 1.2.1.BUILD-SNAPSHOT
+ 1.3.6.RELEASE
```
full pa…
-
```c#
[ValueArgument(typeof(int), "MaxRequestLogCount", Optional = true, DefaultValue = null)]
public int? MaxRequestLogCount { get; set; }
```
When not providing this argument, the default …
StefH updated
7 years ago
-
Today the routes are parsed and json files are saved on `resources/mappings`. To update the routes on Wiremock we need to restart it. We can create the routes with HTTP to avoid this extra step.
Ma…
-
When I use sign "&" in URL in my post json for example:
```
curl -X POST http://localhost:8080/__admin/mappings/new -d
"{ \"request\": { \"url\": \"/get/test&test\", \"method\": \"GET\" }, \"res…
-
Hi,
I realized recently that there is no way to setup WireMock for with multiple mapping and files sources. In my case I have some base library with base mappings and 2 end applications with addition…
-
Hi
During my regular work with contracts I often have to resolve some bugs connected with defined contracts (eg 404 caused by missing header ;) ), when I'd like to browse registered stubs I have tw…
-
WireMockServer wireMockServer = new WireMockServer(8084);
stubFor(get(urlEqualTo("/bla/bla"))
.willReturn(aResponse()
.withHeader("Content-Type", "application/json"…