コード例 #1
0
ファイル: FunctionTest.php プロジェクト: jsnshrmn/Suma
 public function testDescription()
 {
     $function = new ReflectionFunction('Zend_Server_Reflection_FunctionTest_function');
     $r = new Zend_Server_Reflection_Function($function);
     $this->assertContains('function for reflection', $r->getDescription());
     $r->setDescription('Testing setting descriptions');
     $this->assertEquals('Testing setting descriptions', $r->getDescription());
 }