Testing a Quarkus Application
Learn how to test the Quarkus application.
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:
Press + to interact
mvn io.quarkus.platform:quarkus-maven-plugin:2.15.3.Final:create -DprojectGroupId=io.educative -DprojectArtifactId=educative-quarkus
The code generated is available via the playground ...