public void _getParent(){
this.requiredMethod("getChildAt()");
boolean bOK = true;
XTreeNode xNode = null;
try {
log.println("try to getChildAt(0)");
xNode = oObj.getChildAt(0);
} catch (com.sun.star.lang.IndexOutOfBoundsException ex) {
log.println("ERROR: getChildAt(0): " + ex.toString());
}
log.println("try to get parrent of children");
XTreeNode xParrent = xNode.getParent();
bOK = oObj.equals(xParrent);
log.println("original object and parrent should be the same: " + bOK);
tRes.tested("getParent()", bOK);