PhpSpec\Locator\PSR0\PSR0Locator::getFullSpecPath PHP Method

getFullSpecPath() public method

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

Usage Example

Beispiel #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