예제 #1
0
파일: NodeTest.php 프로젝트: travisj/zf
 /**
  * hasChildren() test
  */
 public function testHasChildren()
 {
     $parent = new Zend_Server_Reflection_Node('string');
     $this->assertFalse($parent->hasChildren());
     $parent->createChild('array');
     $this->assertTrue($parent->hasChildren());
 }