blob: 2c84adc38d3d290c0aef6e32520654b0a70ea4e0 [file] [log] [blame]
/**
* @author Filippo Diotalevi
*/
public class NoPackageTest {
private boolean m_run = false;
/**
* @testng.test groups="nopackage"
*/
public void test() {
m_run = true;
}
/**
* @testng.configuration afterTestMethod="true"
* groups="nopackage"
*/
public void afterTest() {
assert m_run : "test method was not run";
}
}