blob: 3830bfa5a4e0d9d70b89b53b867a489a6636a95d [file] [log] [blame]
package test.triangle;
import org.testng.annotations.*;
/**
* This class
*
* @author cbeust
*/
public class Child1 extends Base {
@Test
public void child1() {
assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " + getClass();
}
@Test
public void child1a() {
assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " + getClass();
}
}