Home | History | Annotate | Download | only in triangle
      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
     12   public void child1() {
     13     assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " + getClass();
     14 
     15   }
     16 
     17   @Test
     18   public void child1a() {
     19     assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " + getClass();
     20   }
     21 
     22 }
     23