Programming

WireMock Tutorial: Request Matching, Part One

This blog post provides an introduction to the request matching support of WireMock. After we have finished this blog post, we: Understand how request matching works. Know how we can compare the actual HTTP request method with the expected request method. Can compare the actual request URL with the expected request URL. Let's start by […] Read more

WireMock Tutorial: Configuration

This blog post describes how we can configure the system under test when we want to use WireMock with JUnit 5 and we don't want to use a custom JUnit 5 extension. After we have finished this blog post, we: Understand how we can configure the used WireMock server. Know how we can start the […] Read more

WireMock Tutorial: Introduction

This blog post gives a quick introduction to WireMock. After we have finished this blog post, we can identify its key features, we know when we should use it, and we can get the required dependencies with Maven and Gradle. Let's get started. What Is WireMock? WireMock is a tool that can mimic the behavior […] Read more