1 package test.ant; 2 3 import org.testng.annotations.Test; 4 5 @Test 6 public class DontOverrideSuiteNameTest { 7 private boolean m_run = false; 8 9 @Test(groups = {"nopackage"}) test()10 public void test() { 11 m_run = true; 12 } 13 } 14