/**
  * get/setType() test
  */
 public function testGetSetType()
 {
     $r = new Reflection\ReflectionParameter($this->_getParameter());
     $this->assertEquals('mixed', $r->getType());
     $r->setType('string');
     $this->assertEquals('string', $r->getType());
 }