Exemplo n.º 1
0
 /**
  * get/setType() test
  */
 public function testGetSetType()
 {
     $r = new Zend_Server_Reflection_Parameter($this->_getParameter());
     $this->assertEquals('mixed', $r->getType());
     $r->setType('string');
     $this->assertEquals('string', $r->getType());
 }