@Ignore



@Ignore is used to ignore execution of any test case.
@Ignore
public void test_Operation2(){
System.out.println("This test will no execute");
}
This test will not execute.