コード例 #1
0
 /**
  * @covers \BackBee\NestedNode\Repository\PageRepository::getRoot
  */
 public function testGetRoot()
 {
     $this->assertEquals($this->root, $this->repository->getRoot($this->root->getSite()));
     $this->assertEquals($this->root, $this->repository->getRoot($this->root->getSite(), array(Page::STATE_HIDDEN)));
     $this->assertNull($this->repository->getRoot($this->root->getSite(), array(Page::STATE_ONLINE)));
 }