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

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

public it_returns_empty_array_if_nothing_found ( Filesystem $fs )
$fs PhpSpec\Util\Filesystem
    function it_returns_empty_array_if_nothing_found(Filesystem $fs)
    {
        $this->beConstructedWith($fs, 'PhpSpec', 'spec', $this->srcPath, $this->specPath);
        $fs->pathExists($this->specPath . '/spec/PhpSpec/App/')->willReturn(false);
        $resources = $this->findResources($this->srcPath . '/PhpSpec/App');
        $resources->shouldHaveCount(0);
    }
PSR0LocatorSpec