コード例 #1
0
ファイル: gtMethodTest.php プロジェクト: cefalo19/php-src
 public function testAllParamList()
 {
     $m = new gtMethod('DOMDocument', 'createAttribute');
     $m->setArgumentNames();
     $m->setValidArgumentLists();
     $a = $m->getValidArgumentLists();
     $this->assertEquals('$name', $a[0]);
 }