spec\PhpSpec\Locator\PSR0\PSR0LocatorSpec::it_generates_fullSrcPath_from_srcPath_plus_namespace PHP Method

it_generates_fullSrcPath_from_srcPath_plus_namespace() public method

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