Пример #1
0
 /**
  * setValue() test
  */
 public function testSetValue()
 {
     $parent = new Zend_Server_Reflection_Node('string');
     $this->assertEquals('string', $parent->getValue());
     $parent->setValue('array');
     $this->assertEquals('array', $parent->getValue());
 }