01: package test.dependent;
02:
03: import org.testng.annotations.Test;
04:
05: public class ImplicitGroupInclusion3SampleTest {
06: @Test(groups={"inc"})
07: public void test1() {
08: }
09:
10: @Test(groups={"exc"})
11: public void test2() {
12: throw new RuntimeException("exclude me");
13: }
14:
15: @Test(groups={"exc"},dependsOnMethods={"test2"})
16: public void test3() {
17: throw new RuntimeException("exclude me");
18: }
19:
20: }
|