JUnit 5

The Launch Schedule of the Introduction to JUnit 5 Course

I had to the delay the launch because my last minute testing revealed a few problems that must be solved before I can start selling the course. I will launch the Introduction to JUnit 5 course on 29th of May at 08:00 Finnish time. Here is the launch schedule: The normal price of the course […] Read more

Introducing My New JUnit 5 Course

Some of you might have noticed that I have written only a handful of new blog posts during the last few years. One reason for this is that during these years I have been writing and recording material for a new JUnit 5 course. After a year I kind of realized that producing good videos […] Read more

Writing Unit Tests for a Spring MVC REST API: Writing Data

The previous parts of my Spring MVC Test tutorial described how you we can write unit tests for a Spring MVC REST API when the system under test returns the information of a single item or returns a list. In other words, now we know how we can write unit tests for Spring MVC controllers […] Read more

Writing Unit Tests for a Spring MVC REST API: Returning a List

The previous part of my Spring MVC Test tutorial described how we can write unit tests for Spring MVC controllers which return the information of a single item as JSON. This blog post provides more information about writing unit tests for a Spring MVC REST API. To be more specific, this blog post describes how […] Read more

The previous part of my Spring MVC Test tutorial described how we can send HTTP requests to the system under test and write assertions for the response returned by the tested controller method. This blog post describes how we can use the information provided by the previous part of this tutorial when we are writing […] Read more

Writing Unit Tests for a Spring MVC REST API: Configuration

Earlier we learned that we should configure the system under test by using the standalone configuration when we are writing unit tests for Spring MVC controllers. In this blog post, we will put theory into practice. This blog post describes how we can use the standalone configuration when we are writing unit tests for Spring […] Read more