Lines Matching refs:methodName

61      * @param string $methodName
67 public static function getLinesToBeCovered($className, $methodName) argument
71 $methodName
78 return self::getLinesToBeCoveredOrUsed($className, $methodName, 'covers');
85 * @param string $methodName
89 public static function getLinesToBeUsed($className, $methodName) argument
91 return self::getLinesToBeCoveredOrUsed($className, $methodName, 'uses');
96 * @param string $methodName
103 private static function getLinesToBeCoveredOrUsed($className, $methodName, $mode) argument
107 $methodName
160 * @param string $methodName
164 public static function getRequirements($className, $methodName) argument
168 $reflector = new ReflectionMethod($className, $methodName);
214 * @param string $methodName
218 public static function getMissingRequirements($className, $methodName) argument
220 $required = static::getRequirements($className, $methodName);
283 * @param string $methodName
287 public static function getExpectedException($className, $methodName) argument
289 $reflector = new ReflectionMethod($className, $methodName);
296 $methodName
366 * @param string $methodName
373 public static function getProvidedData($className, $methodName) argument
375 $reflector = new ReflectionMethod($className, $methodName);
378 $data = self::getDataFromDataProviderAnnotation($docComment, $className, $methodName);
409 * @param string $methodName
416 private static function getDataFromDataProviderAnnotation($docComment, $className, $methodName) argument
452 $data = $dataProviderMethod->invoke($object, $methodName);
524 * @param string $methodName
530 public static function parseTestMethodAnnotations($className, $methodName = '') argument
537 … if (!empty($methodName) && !isset(self::$annotationCache[$className . '::' . $methodName])) {
539 $method = new ReflectionMethod($className, $methodName);
544 self::$annotationCache[$className . '::' . $methodName] = $annotations;
549 … 'method' => !empty($methodName) ? self::$annotationCache[$className . '::' . $methodName] : []
555 * @param string $methodName
559 public static function getInlineAnnotations($className, $methodName) argument
561 $method = new ReflectionMethod($className, $methodName);
609 * @param string $methodName
613 public static function getBackupSettings($className, $methodName) argument
618 $methodName,
623 $methodName,
633 * @param string $methodName
637 public static function getDependencies($className, $methodName) argument
641 $methodName
664 * @param string $methodName
668 public static function getErrorHandlerSettings($className, $methodName) argument
672 $methodName,
681 * @param string $methodName
685 public static function getGroups($className, $methodName = '') argument
689 $methodName
732 * @param string $methodName
736 public static function getSize($className, $methodName) argument
738 $groups = array_flip(self::getGroups($className, $methodName));
759 * @param string $methodName
763 public static function getTickets($className, $methodName) argument
767 $methodName
787 * @param string $methodName
791 public static function getProcessIsolationSettings($className, $methodName) argument
795 $methodName
810 * @param string $methodName
814 public static function getPreserveGlobalStateSettings($className, $methodName) argument
818 $methodName,
879 * @param string $methodName
884 private static function getBooleanAnnotationSetting($className, $methodName, $settingName) argument
888 $methodName
926 list($className, $methodName) = explode('::', $element);
928 if (isset($methodName[0]) && $methodName[0] == '<') {
946 $inverse = isset($methodName[1]) && $methodName[1] == '!';
948 if (strpos($methodName, 'protected')) {
950 } elseif (strpos($methodName, 'private')) {
952 } elseif (strpos($methodName, 'public')) {
968 if ($className == '' && function_exists($methodName)) {
970 $methodName
976 method_exists($className, $methodName))) {
981 $methodName
988 $methodName