Home
last modified time | relevance | path

Searched refs:annotationCache (Results 1 – 1 of 1) sorted by relevance

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DTest.php28 private static $annotationCache = []; variable in PHPUnit_Util_Test
532 if (!isset(self::$annotationCache[$className])) {
534 self::$annotationCache[$className] = self::parseAnnotations($class->getDocComment());
537 … if (!empty($methodName) && !isset(self::$annotationCache[$className . '::' . $methodName])) {
544 self::$annotationCache[$className . '::' . $methodName] = $annotations;
548 'class' => self::$annotationCache[$className],
549 … 'method' => !empty($methodName) ? self::$annotationCache[$className . '::' . $methodName] : []