If you have an error during compilation in IntelliJ Idea and/or maven/gradle
Error:(X, Y) java: package edu.umd.cs.findbugs.annotations does not exist
you’ve enabled FindBugs Suppress Warnings in lombok.config:
lombok.extern.findbugs.addSuppressFBWarnings = true
but you forgot to add FindBugs to your maven/gradle config…
You might either remove config directive or add FB dependency.
Couple of years ago I wasn't a big fan of unit testing. It was obvious to me that well prepared unit tests are crucial though. I didn't known why exactly crucial yet then. I just felt they are important. My disliking to write automation tests was mostly related to the effort necessary to prepare them. Also a spaghetti code was easily spotted in test sources.
