Summary
WireMocha currently provides inspections and quick fixes to report and simplify certain response related call chains to their shorthands in the WireMock class, e.g. aResponse().withStatus(404) to WireMock.notFound().
When the shorthand method is not suitable/enough, and a different response configuration is needed, intention actions could be applied on the shorthand methods to expand them to their implementation.
Tasks
- Collect all convenience methods and what they would be expanded to.
- Implement intention actions for each eligible convenience method.