Creating a New TestProject OpenSDK Project

Before you can write tests with the TestProject OpenSDK, you have to choose the test automation framework, get the required dependencies, and figure out a way to build and run your tests. This blog posts describes how you create a new TestProject OpenSDK project when you want to write your tests with Junit 5. After […] Read more

Introduction to TestProject OpenSDK

This blog post provides an introduction to the TestProject OpenSDK. After you have read this blog post, you: Know what TestProject OpenSDK is. Can identify the benefits of using the TestProject OpenSDK. Understand how the TestProject OpenSDK works. Know what are the main differences between the TestProject SDK1 and the TestProject OpenSDK. Let's begin. This […] Read more

Spring Batch Tutorial: Writing Information to an XML File

The previous part of my Spring Batch tutorial described how you can write information to a CSV File. This time you will learn to write the output data of your Spring Batch job to an XML file. After you have read this blog post, you: Can identify the dependencies which are required when you want […] Read more

Spring Batch Tutorial: Reading Information From an XML File

The previous part of my Spring Batch tutorial described how you can read information from a CSV File. This time you will learn to read the input data of your Spring Batch job from an XML file. After you have read this blog post, you: Can identify the dependencies which are required when you want […] 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