1 package test.mannotation; 2 3 import org.testng.annotations.Test; 4 5 /** 6 * Make sure that if a method is declared in the base class and a child class 7 * adds a class-scoped group to it, that method receives it as well. 8 * 9 * @author cbeust 10 * @date Mar 22, 2006 11 */ 12 public class MBaseCapture { 13 14 @Test shouldBelongToGroupChild()15 public void shouldBelongToGroupChild() { 16 17 } 18 } 19