In Wiremock if we want to check that `all requests...
# help
a
In Wiremock if we want to check that
all requests
have an header (global check) in standalone mode, how can we do it? One way I can see is to write a Custom extension extending the RequestFilter extension and add logic to check -> if header exists continue or else give back a 404 not found?
b
Yes, a custom request filter would be a good way to implement this.