當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SimpleReflection::getMethods方法代碼示例

本文整理匯總了PHP中SimpleReflection::getMethods方法的典型用法代碼示例。如果您正苦於以下問題:PHP SimpleReflection::getMethods方法的具體用法?PHP SimpleReflection::getMethods怎麽用?PHP SimpleReflection::getMethods使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SimpleReflection的用法示例。


在下文中一共展示了SimpleReflection::getMethods方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testMethodsListFromClass

 function testMethodsListFromClass()
 {
     $reflection = new SimpleReflection('AnyOldThing');
     $methods = $reflection->getMethods();
     $this->assertEqualIgnoringCase($methods[0], 'aMethod');
 }
開發者ID:ljarray,項目名稱:dbpedia,代碼行數:6,代碼來源:reflection_php4_test.php

示例2: SimpleReflection

 function testMethodsComeFromDescendentInterfacesInAbstractClass()
 {
     $reflection = new SimpleReflection('AnyAbstractImplementation');
     $this->assertIdentical($reflection->getMethods(), array('aMethod'));
 }
開發者ID:PublicityPort,項目名稱:OpenCATS,代碼行數:5,代碼來源:reflection_php5_test.php

示例3: foreach

 /**
  *    Creates code within a class to generate replaced
  *    methods. All methods call the _invoke() handler
  *    with the method name and the arguments in an
  *    array.
  *    @param array $methods    Additional methods.
  *    @access private
  */
 function _createHandlerCode($methods)
 {
     $code = '';
     $methods = array_merge($methods, $this->_reflection->getMethods());
     foreach ($methods as $method) {
         if ($this->_isConstructor($method)) {
             continue;
         }
         $mock_reflection = new SimpleReflection($this->_mock_base);
         if (in_array($method, $mock_reflection->getMethods())) {
             continue;
         }
         $code .= "    " . $this->_reflection->getSignature($method) . " {\n";
         $code .= "        \$args = func_get_args();\n";
         $code .= "        \$result = &\$this->_invoke(\"{$method}\", \$args);\n";
         $code .= "        return \$result;\n";
         $code .= "    }\n";
     }
     return $code;
 }
開發者ID:sebs,項目名稱:simpletest,代碼行數:28,代碼來源:mock_objects.php

示例4: createNewMethodCode

 /**
  *    Creates code within a class to generate a new
  *    methods. All methods call the invoke() handler
  *    on the internal mock with the method name and
  *    the arguments in an array.
  *    @param array $methods    Additional methods.
  */
 protected function createNewMethodCode($methods)
 {
     $code = '';
     foreach ($methods as $method) {
         if ($this->isConstructor($method)) {
             continue;
         }
         $mock_reflection = new SimpleReflection($this->mock_base);
         if (in_array($method, $mock_reflection->getMethods())) {
             continue;
         }
         $code .= "    " . $this->reflection->getSignature($method) . " {\n";
         $code .= "        \$args = func_get_args();\n";
         $code .= "        \$result = &\$this->mock->invoke(\"{$method}\", \$args);\n";
         $code .= "        return \$result;\n";
         $code .= "    }\n";
     }
     return $code;
 }
開發者ID:Boris-de,項目名稱:videodb,代碼行數:26,代碼來源:mock_objects.php

示例5: selectRunnableTests

 /**
  *    Calculates the incoming test cases. Skips abstract
  *    and ignored classes.
  *    @param array $candidates   Candidate classes.
  *    @return array              New classes which are test
  *                               cases that shouldn't be ignored.
  *    @access public
  */
 function selectRunnableTests($candidates)
 {
     $classes = array();
     foreach ($candidates as $class) {
         if (TestSuite::getBaseTestCase($class)) {
             $reflection = new SimpleReflection($class);
             if ($reflection->isAbstract()) {
                 SimpleTest::ignore($class);
             } else {
                 // only pick classes which do have test methods we can run:
                 $methods = $reflection->getMethods();
                 foreach ($methods as $method) {
                     if (SimpleTestCase::isTest($class, $method)) {
                         $classes[] = $class;
                         break;
                     }
                 }
             }
         }
     }
     return $classes;
 }
開發者ID:GerHobbelt,項目名稱:simpletest,代碼行數:30,代碼來源:test_case.php

示例6: testMethodsListFromInterface

 function testMethodsListFromInterface()
 {
     $reflection = new SimpleReflection('AnyOldInterface');
     $methods = $reflection->getMethods();
     $this->assertEqual($methods[0], 'aMethod');
 }
開發者ID:sebs,項目名稱:simpletest,代碼行數:6,代碼來源:reflection_php5_test.php


注:本文中的SimpleReflection::getMethods方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。