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), and that's why we must understand what's the best way to configure our unit tests. After we have finished this blog post, we: Can identify the techniques we can use when […] Read more

TestProject Best Practices

I have written quite a bit about the TestProject framework, and my TestProject tutorial provides us the technical skills which we need when we write tests for our web applications. This is a good start, but it's not enough. Before we can truly master a tool, we have to learn to use it in the […] Read more

Writing Custom Web Element Actions With TestProject

We can remove duplicate code from our TestProject test suite by using web actions. Even though web actions make our life easier, they have a access to the entire DOM, and this can make our test code more complicated than it could be. This blog post describes how we can solve this problem by using […] Read more

Introduction to Spring MVC Test Framework

This blog post is the first part of my new Spring MVC Test tutorial. This tutorial helps you to write unit and integration tests for Spring MVC controllers with JUnit 5. However, before we can get to the good stuff, we have to understand the basics. After we have finished this blog post, we: Know […] Read more