PhpSpec\Locator\PSR0\PSR0Locator::getFullSpecPath PHP Méthode

getFullSpecPath() public méthode

public getFullSpecPath ( ) : string
Résultat string
    public function getFullSpecPath()
    {
        return $this->fullSpecPath;
    }

Usage Example

Exemple #1
0
 /**
  * @return string
  */
 public function getSpecFilename()
 {
     $nsParts = $this->parts;
     $classname = array_pop($nsParts);
     $parts = array_merge($nsParts, explode('_', $classname));
     return $this->locator->getFullSpecPath() . implode(DIRECTORY_SEPARATOR, $parts) . 'Spec.php';
 }
All Usage Examples Of PhpSpec\Locator\PSR0\PSR0Locator::getFullSpecPath