spec\PhpSpec\Locator\PSR0\PSR0LocatorSpec::it_generates_fullSrcPath_from_srcPath_plus_namespace_cutting_psr4_prefix PHP Метод

it_generates_fullSrcPath_from_srcPath_plus_namespace_cutting_psr4_prefix() публичный Метод

public it_generates_fullSrcPath_from_srcPath_plus_namespace_cutting_psr4_prefix ( Filesystem $fs )
$fs PhpSpec\Util\Filesystem
    function it_generates_fullSrcPath_from_srcPath_plus_namespace_cutting_psr4_prefix(Filesystem $fs)
    {
        $this->beConstructedWith($fs, 'psr4\\prefix\\Cust\\Ns', 'spec', dirname(__DIR__), __DIR__, 'psr4\\prefix');
        $this->getFullSrcPath()->shouldReturn(dirname(__DIR__) . DIRECTORY_SEPARATOR . 'Cust' . DIRECTORY_SEPARATOR . 'Ns' . DIRECTORY_SEPARATOR);
    }
PSR0LocatorSpec