01: package test.abstractbaseclass;
02:
03: import junit.framework.TestCase;
04:
05: public class SetUp extends TestCase {
06: protected boolean m_setUp = false;
07:
08: public SetUp() {
09: }
10:
11: /**
12: * this is the suites common setUp-method
13: *
14: * @testng.before-suite
15: */
16: public void setUp() {
17: // ppp("SETTING SETUP TO TRUE " + hashCode());
18: m_setUp = true;
19: }
20:
21: private void ppp(String string) {
22: System.out.println("[SetUp] " + string);
23: }
24:
25: }
|