1 package test.configuration;
2 
3 import org.testng.annotations.Test;
4 
5 public class BaseGroupsASampleTest extends Base {
6    @Test(groups = "foo")
a()7    public void a() {
8 //       System.out.println( "a" );
9    }
10 }