01: package test.mannotation;
02:
03: import org.testng.annotations.Test;
04:
05: /**
06: * Make sure that if a method is declared in the base class and a child class
07: * adds a class-scoped group to it, that method receives it as well.
08: *
09: * @author cbeust
10: * @date Mar 22, 2006
11: */
12: public class MBaseCapture {
13:
14: @Test
15: public void shouldBelongToGroupChild() {
16:
17: }
18: }
|