Tag: codecoverage

  • What is lombok and how to use it?

    Feeling bored of asking your IDE to generate getters and setters for your Java POJO classes? And also implementing toString(), equals() and hashCode() methods ? Lombok comes to the rescue. It automatically generates all of them for you. All you have to do is install lombok and then add the required annotations. How to install…