blob: acb85c37a974f0c6c902f094a7acfacc554bbb69 [file] [log] [blame]
package test.mannotation;
import org.testng.annotations.Test;
/**
* Make sure that if a method is declared in the base class and a child class
* adds a class-scoped group to it, that method receives it as well.
*
* @author cbeust
* @date Mar 22, 2006
*/
public class MBaseCapture {
@Test
public void shouldBelongToGroupChild() {
}
}