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
Programming
The TestProject framework provides support for running TestProject tests and actions on a local development environment, and this blog post explains how we can use this feature. After we have finished this blog post, we: Know how we can obtain our developer key. Understand how we can pass input parameter values to the invoked test […] Read more
When we start a new project with Kotlin, one of the first things that we have to do is to create a Gradle project that can compile and run our application. However, our job isn’t done yet. We still have to figure out a way to compile and run our automated tests. This blog post […] Read more
The TestProject team published a new feature that allows us to transform our recorded tests into Java code and download the generated code. This blog post explains when this feature is useful to us and describes how we can use this feature. After we have finished this blog post, we: Know when we should transform […] Read more
When we start a new project with Kotlin, one of the first things that we have to do is to create a Maven project that can compile and run our application. However, our job isn't done yet. We still have to figure out a way to compile and run our automated tests. This blog post […] Read more
After we have have written custom TestProject actions, we want to use them in our test classes. Unfortunately, we have no idea how can do it. During this blog post we will write two tests for the search function of my blog and both test classes use the custom actions which we wrote in the […] Read more