1 package test.dataprovider;
2 
3 import org.testng.annotations.Test;
4 
5 public class InheritanceBTest extends InheritanceATest {
6 
7   @Test(dataProvider = "dp")
f(String s)8   public void f(String s) {
9   }
10 }
11