I've seen a lot of confusion recently about the SpringExtension. When failing to get the context configuration for a test right, some

Read More

Sending emails is a common responsibility of enterprise applications. With the Spring Boot Starter Mail dependency, this becomes a trivial task. But

Read More

WebSockets allow establishing a full-duplex, two-way communication between the client and the server. With Spring WebSocket, we can bootstrap our WebSocket application

Read More

Writing your first test with JUnit 5 is straightforward. Annotate your test method with @Test and verify the result using assertions. Apart

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

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

Read More