Home | History | Annotate | Download | only in ant
      1 package test.ant;
      2 
      3 import org.testng.annotations.AfterMethod;
      4 import org.testng.annotations.Test;
      5 
      6 /**
      7  * @author Filippo Diotalevi
      8  */
      9 public class NoPackageTest {
     10 	private boolean m_run = false;
     11 
     12 	@Test(groups = {"nopackage"})
     13 	public void test() {
     14 	   m_run = true;
     15 	}
     16 
     17    @AfterMethod(groups = {"nopackage"})
     18    public void after() {
     19       assert m_run : "test method was not run";
     20    }
     21 }
     22