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 →