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

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

public it_supports_psr4_namespace_queries ( Filesystem $filesystem )
$filesystem PhpSpec\Util\Filesystem
    function it_supports_psr4_namespace_queries(Filesystem $filesystem)
    {
        $this->beConstructedWith($filesystem, 'Test\\Namespace\\PhpSpec', 'spec', $this->srcPath, $this->specPath, 'Test\\Namespace');
        $filesystem->pathExists($this->specPath . $this->convert_to_path('/spec/PhpSpec/Console/ApplicationSpec.php'))->willReturn(true);
        $this->supportsQuery('Test\\Namespace\\PhpSpec\\Console\\Application')->shouldReturn(true);
    }
PSR0LocatorSpec