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

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

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