Example #1
0
 /**
  * @covers BackBee\NestedNode\Page::setRevisions
  */
 public function testSetRevisions()
 {
     $revisions = new \Doctrine\Common\Collections\ArrayCollection();
     $this->assertEquals($this->page, $this->page->setRevisions($revisions));
     $this->assertEquals($revisions, $this->page->getRevisions());
 }