blob: b6daa388ce48fcc1f6680638d86b764cb788d229 [file] [log] [blame]
package test.configuration;
import org.testng.Assert;
/**
* @testng.test groups = "group1"
*/
public class ConfigurationInheritGroupsSampleTest {
private boolean m_ok = false;
/**
* @testng.before-method
*/
public void setUp() {
m_ok = true;
}
public void test1() {
Assert.assertTrue(m_ok);
}
private void ppp(String s) {
System.out.println("[ConfigurationInheritGroupsSampleTest] " + s);
}
}