01: package test.testng93;
02:
03: import org.testng.annotations.BeforeMethod;
04: import org.testng.annotations.Test;
05:
06: /**
07: * This class/interface
08: */
09: public class SingleTestTest {
10: @BeforeMethod(groups={"group1"})
11: public void shouldRunBefore() {
12: System.out.println("Runs before");
13: }
14:
15: @Test(groups={"group1"})
16: public void theFirstActualTest() {
17: System.out.println("The first actual test");
18: }
19:
20: @Test
21: public void theSecondActualTest() {
22: System.out.println("The second actual test");
23: }
24: }
|