Category: Quarkus
How to create a Custom Annotation in Quarkus Framework?
Natan Ferreira- 0
- 2647
It’s important to perform validations in the system. There are dependencies available for this with a lot of ready-made solutions. For example, in the case of Quarkus, we can use Hibernate Validator, which provides us with some annotations to solve common problems. However, if it’s necessary to perform a validation for which there is no…
Read More
How to do a Parameterized Unit Test in Quarkus?
Natan Ferreira- 0
- 2105
Parameterized unit tests are beneficial for applications as they simplify the process of writing tests, allowing us to run a single test multiple times with different parameters. Requirements I’m using JDK 17, Intellij and Quarkus Version 3.4 on the project. Practice I created this class: These notations represent validations applied to the fields. For instance,…
Read More
How does unit test work ? How to do unit test on Quarkus ?
Natan Ferreira- 2
- 2960
Testing a system is very important to maintain quality. There are some types of tests. Closer to the base of the pyramid, less cost and time are required.Let’s focus on the base of the pyramid. Unit test serves to validate the smallest code units. Generally a system accesses some external service such as a database,…
Read More