blob: 54648312b32e528808fd2e59d458009b9d7be21d [file] [log] [blame]
package test.abstractbaseclass;
import junit.framework.TestCase;
public class SetUp extends TestCase {
protected boolean m_setUp = false;
public SetUp()
{
}
/**
* this is the suites common setUp-method
*
* @testng.before-suite
*/
public void setUp()
{
// ppp("SETTING SETUP TO TRUE " + hashCode());
m_setUp = true;
}
private void ppp(String string) {
System.out.println("[SetUp] " + string);
}
}