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

it_supports_psr0_namespace_queries() public method

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