Ignore
It's possible that the functionality for a test has not been implemented yet or is being worked upon. In that case we can disable the test by using the "@Ignore" annotation.
Ex:
@Ignore
@Test
public void test1()
{
System.out.println("Calling test1") ;
}