If your Spring Boot application integrates AWS services like S3, SNS, or SQS, you might wonder how to write effective integration tests.

Read More

With Spring Boot, you only need one dependency to have a solid testing infrastructure: Spring Boot Starter Test. Using this starter, you'll

Read More

Spring Boot provides a set of annotations you can use for writing tests for a specific part of your application. These annotations

Read More

While watching Andy Wilkinson's great talk, Testing Spring Boot Applications on YouTube, he brought my attention to a hidden gem for testing

Read More

Ensuring your application is working properly is a critical part of continuous integration and delivery. Unit tests help you to test your

Read More

Alongside the WebClient, Spring provides a WebTestClient for testing purposes. The API of this class is similar to the WebClient and allows

Read More

This article showcases a testing recipe for writing integration tests for Spring Boot applications using WireMock and JUnit. In one of the

Read More

Integration tests for your Jakarta EE application are essential. Testing the application in a full setup will ensure all of your components

Read More

Fetching data from other systems is common in a microservice-based architecture. Besides the downtime of the other service, a broken API contract

Read More

In one of my previous blog posts, I showed you a simple way to load-test your application with Apache Benchmark. As this

Read More