This “Ignored” means the method is not ready to test, the TestNG engine will just bypass this method.

import org.testng.annotations.*;
 
/**
 * TestNG Ignore Test
 * @author mkyong
 *
 */
public class TestNGTest3 {
 
	@Test(enabled=false)
	public void divisionWithException() {  
	  System.out.println("Method is not ready yet");
	}  
 
}

In above example, TestNG will not test the divisionWithException() method.

Any Java questions or problems? please post at this JavaNullPointer.com forum, see you there ~