...
- The standard unit tests, testing obviously the class and methods
- The Spring integration tests that really starts Clamp (using @SpringBootTest) and that can make use of everything in the code, like the database, the http connection, etc ...
Those tests must have a specific filename pattern: **ItCase.java
The code coverage is done by Jacoco and the reports are configured to provide unit tests and integration coverage.
...