Spring Boot provides a set of annotations you can use for writing tests for a specific part of your application. These annotations
While watching Andy Wilkinson's great talk, Testing Spring Boot Applications on YouTube, he brought my attention to a hidden gem for testing
Ensuring your application is working properly is a critical part of continuous integration and delivery. Unit tests help you to test your
Alongside the WebClient, Spring provides a WebTestClient for testing purposes. The API of this class is similar to the WebClient and allows
This article showcases a testing recipe for writing integration tests for Spring Boot applications using WireMock and JUnit. In one of the
Integration tests for your Jakarta EE application are essential. Testing the application in a full setup will ensure all of your components
Fetching data from other systems is common in a microservice-based architecture. Besides the downtime of the other service, a broken API contract
In one of my previous blog posts, I showed you a simple way to load-test your application with Apache Benchmark. As this
Testing your application's performance during development as a single user is easy but often misleading. With writing unit- and integration-tests you make
Testcontainers is a game-changing library for writing integration and end-to-end tests. With the advent of Docker, we can conveniently start infrastructure components