Reading Time: 2 minutesSometimes you might need to test a method which does not return anything but only prints the output on console.…
Reading Time: 9 minutesLombok is a library expedite many tedious tasks and reduces Java source code verbosity. Lombok uses annotation processing through APT…
Reading Time: 3 minutesIn Java multi-threading can be achieved in two ways. Extending Thread class Implementing Runnable interface Let’s look at them one…