Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 2.62 KB

wiremock.md

File metadata and controls

42 lines (34 loc) · 2.62 KB

Bookmarks tagged [wiremock]

https://www.youtube.com/watch?v=x3MvZ8DFrpE

Slides

Create HTTP mocks with WireMock’s REST API from any language for deterministic testing a...


http://wiremock.org/docs/

WireMock is an HTTP mock server. At its core it is web server that can be primed to serve canned responses to particular requests (stubbing) and that captures incoming requests so that they can be che...


https://blog.softwaremill.com/stateful-tests-in-wiremock-fca68f855264

When you want to test the integration of your application with an external service with which you communicate using HTTP, Wiremock can come as a handy tool. It provides a mechanism for recording and p...

  • 📆 published on: 2019-06-25
  • tags: wiremock

https://hub.docker.com/r/rodolpheche/wiremock/

Wiremock standalone HTTP server Docker image


http://wiremock.org/

WireMock is a simulator for HTTP-based APIs. Some might consider it a service virtualization tool or a mock server.

It enables you to stay productive when an API you depend on doesn't exist or isn't ...