Stack Overflow is a question and answer site for professional and enthusiast programmers. A user asked the following question “If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?” The answers to that question were varied […]

Read More →

As a Java developer there are many instances where you find yourself wanting to separate running unit and integration tests. Here is a simple solution to that problem. The following is a more clear writeup of what is given by JUnit Team. Step1: Create a JUnit category. 1 2 3 package com.rushis.test; public interface IntegrationTest […]

Read More →