blob: b70e6d1b555cc60ecfb8c2ec1aad3bd9d425ee4a [file] [log] [blame]
import org.testng.annotations.Test;
/**
* @author Filippo Diotalevi
*/
@Test
public class NoPackageTest {
private boolean m_run = false;
@Test(groups = {"nopackage"})
public void test() {
m_run = true;
}
}