How to exempt lombok generated code from Jacoco
Lombok makes life easier for java developers by generating the mundane code (e.g. getters and setters) automatically, but if you are running code coverage, y...
Lombok makes life easier for java developers by generating the mundane code (e.g. getters and setters) automatically, but if you are running code coverage, y...
Today we are going to work on adding Spring Security to our Spring boot application. To start, we will first need to add the dependencies for Spring Securit...
In today’s environment, when we are having tons of dependencies in our application project, as developers we need to take care not just of the business logic...
Unlike unit tests where we should be isolating the test to just the codes in the function we are testing, integration tests is meant to test the full spectru...
Spring provides the @WebMvcTest annotation for testing Spring MVC components, providing only the configuration relevant to the MVC tests and not the full aut...