/** * @covers BackBee\NestedNode\Page::getPageMainZones */ public function testGetPageMainZones() { $this->assertEquals(array($this->page->getContentSet()->first()->getUid() => $this->page->getContentSet()->first()), $this->page->getPageMainZones()); $child = new Page('child', array('title' => 'child', 'url' => 'url')); $this->assertEquals(array(), $child->getPageMainZones()); }