Does Spring boot provide any internal library for generating coverage report

1.5k Views Asked by At

I am working on an assignment in which I need to generate code coverage report without using any plugin.I have gone through the Spring boot documentation but could not find any article on coverage report generation. Is it possible to generate coverage report without using any plugin like jacoco or maven-surefire-report-plugin or sonarQube. Any input will be highly appreciated. Thanks!!

1

There are 1 best solutions below

0
eHayik On

No, It isn't. Spring Boot's maven/gradle plugins does not provide support for code coverage out of the box, you will need to use either JaCoCo or a similar tool.

See: