Spring MVC Test

Writing Unit Tests for Spring MVC Controllers: Rendering a Single Item

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 Tests for Spring MVC Controllers: Test Case 101

The previous part of my new Spring MVC Test tutorial taught us how we can configure the system under test when we are writing unit tests for "normal" Spring MVC controllers. We also learned that if we don't want to add duplicate code to our test classes, we should send HTTP requests to the system […] Read more

Writing Unit Tests for "Normal" Spring MVC Controllers: Configuration

The previous part of my new Spring MVC Test tutorial taught us 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 […] Read more

The Best Way to Configure the Spring MVC Test Framework, Part One

Before we can write unit tests for Spring MVC controllers, we have to configure the system under test (aka the Spring MVC Test framework). Unfortunately, before we can write the code that configures the Spring MVC Test framework, we have to be able to select the best way to configure our unit tests. After we […] Read more