1 package test.inheritance.testng739; 2 3 import org.testng.annotations.Test; 4 5 public class B extends BaseClass { 6 7 @Test 8 public void testB() { 9 } 10 } 11