01: package test.tmp;
02:
03: import org.testng.annotations.Configuration;
04: import org.testng.annotations.Test;
05:
06: public class ConcreteTest extends Fixturable {
07: @Configuration(beforeTest=true,afterGroups="fixture")
08: public void beforeFixture() {
09: ppp("BEFORE");
10: }
11:
12: @Test(groups="fixture")
13: public void test() {
14: ppp("TEST");
15: }
16:
17: private static void ppp(String s) {
18: System.out.println("[ConcreteTest] " + s);
19: }
20: }
|