예제 #1
0
파일: SuluNode.php 프로젝트: sulu/sulu
 /**
  * {@inheritdoc}
  */
 public function getAncestor($depth)
 {
     return $this->node->getAncestor($depth);
 }
 /**
  * @expectedException \PHPCR\ItemNotFoundException
  */
 public function testGetAncestorTooDeep()
 {
     $this->deepnode->getAncestor($this->deepnode->getDepth() + 1);
 }