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