/**
  * testGetAllChildrenReturnsAnEmptyArrayByDefault
  *
  * @return void
  * @since 1.0.0
  */
 public function testGetAllChildrenReturnsAnEmptyArrayByDefault()
 {
     $class = new ASTClass(__CLASS__);
     $this->assertSame(array(), $class->getChildren());
 }