1 package test.triangle;
2 
3 import org.testng.annotations.Test;
4 
5 /**
6  * This class
7  *
8  * @author cbeust
9  */
10 public class Child2 extends Base {
11 
12   @Test
child2()13   public void child2() {
14     assert m_isInitialized : "Wasn't initialized correctly";
15   }
16 }
17