package test.inheritance.testng739;

import org.testng.annotations.Test;

public class B extends BaseClass {

  @Test
  public void testB() {
  }
}
