Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 784 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 784 Bytes

POC - Wiremock Stub Mapping Recording

Provides a example/proof of concept of Wiremock Stub Mapping Recording using .NET Core.

The Project

This project contains 3 elements:

  • The API (Wiremock-Recording.Server.Api): which contains a simple API with two endpoints;
  • Recording Test (Wiremock-Recording.Test): A NUnit test project which test and record the response from the API;
  • Playback Test (Wiremock-Playback.Test): Another NUnit test project which tests the APIs endpoint but using only the Wiremock Mappings - WITHOUT running the aforementioned API;

How to run

The points of interest of this project are the test projects. In order to get it working, you have to run FIRST the Recording Test and then Playback Test at least once (in order to create the stubs).