As you might know, I have created an online video course that helps you to write automated tests for Spring and Spring Boot web applications. Also, I am currently recording the second version of this course, and that's why I need your help. The 3 Improvements That Make My Course Better I just finished the […] Read more
Programming
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
This blog post describes how we can implement a read-only one-to-many relationship with jOOQ and a library called SimpleFlatMapper. Read More
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
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
The Spring MVC Test framework helps us to write clean unit and integration tests for our Spring MVC controllers. I a big fan of Spring MVC Test framework, and I like to think that I write clean tests. However, a few months ago my colleague mentioned that my tests seem to have a lot of […] Read more