/**
  * @covers BackBee\NestedNode\AbstractNestedNode::getDescendants
  */
 public function testGetDescendants()
 {
     $this->assertInstanceOf('Doctrine\\Common\\Collections\\ArrayCollection', $this->mock->getDescendants());
     $this->assertEquals(0, $this->mock->getDescendants()->count());
 }