Home | History | Annotate | Download | only in configuration
      1 package test.configuration;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 public class BaseGroupsBSampleTest extends Base {
      6    @Test(groups = "foo")
      7    public void b() {
      8 //       System.out.println( "b" );
      9    }
     10 }