Testing a Quarkus Application
Explore how to create automated tests for Quarkus applications by using JUnit 5 and the REST Assured extension. Understand testing REST endpoints and service classes to ensure application reliability and code quality.
We'll cover the following...
We'll cover the following...
To ensure a bug-free and robust application, we need to thoroughly test it. This can be done by manual testing or by automating the task with scripts and code. We’ll explore how this can be done with Quarkus.
Example app
Let’s start by creating a new application with the below command:
The code generated is available via the playground ...