blob: 0c231f916ef4483c9974c7c2f8d2c0c39b02510c [file] [log] [blame]
import org.testng.annotations.Test;
@Test
public class DontOverrideSuiteNameTest {
private boolean m_run = false;
@Test(groups = {"nopackage"})
public void test() {
m_run = true;
}
}