http://wiremock.org/docs/response-templating/
"The boolean constructor parameter indicates whether the extension should be applied globally. If true, all stub mapping responses will be rendered as templates prior to being served.
Otherwise the transformer will need to be specified on each stub mapping by its name response-template"
You would just need to add this extension to wiremockRule... now templating is not working.
@Rule public WireMockRule wm = new WireMockRule(options() .extensions(new ResponseTemplateTransformer(false)) );
http://wiremock.org/docs/response-templating/
"The boolean constructor parameter indicates whether the extension should be applied globally. If true, all stub mapping responses will be rendered as templates prior to being served.
Otherwise the transformer will need to be specified on each stub mapping by its name response-template"
You would just need to add this extension to wiremockRule... now templating is not working.
@Rule public WireMockRule wm = new WireMockRule(options() .extensions(new ResponseTemplateTransformer(false)) );