1 package test.triangle; 2 3 import org.testng.annotations.Test; 4 5 /** 6 * This class 7 * 8 * @author cbeust 9 */ 10 public class Child1 extends Base { 11 @Test child1()12 public void child1() { 13 assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " + getClass(); 14 15 } 16 17 @Test child1a()18 public void child1a() { 19 assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " + getClass(); 20 } 21 22 } 23