コード例 #1
0
 public function testDescription()
 {
     $function = new \ReflectionFunction('\\ZendTest\\Server\\Reflection\\function1');
     $r = new Reflection\ReflectionFunction($function);
     $this->assertContains('function for reflection', $r->getDescription());
     $r->setDescription('Testing setting descriptions');
     $this->assertEquals('Testing setting descriptions', $r->getDescription());
 }