spec\PhpSpec\Locator\PSR0\PSR0LocatorSpec::it_returns_empty_array_if_tracked_specPath_does_not_exist PHP 메소드

it_returns_empty_array_if_tracked_specPath_does_not_exist() 공개 메소드

public it_returns_empty_array_if_tracked_specPath_does_not_exist ( Filesystem $fs )
$fs PhpSpec\Util\Filesystem
    function it_returns_empty_array_if_tracked_specPath_does_not_exist(Filesystem $fs)
    {
        $this->beConstructedWith($fs, '', 'spec', dirname(__DIR__), __DIR__);
        $path = __DIR__ . DIRECTORY_SEPARATOR . 'spec' . DIRECTORY_SEPARATOR;
        $fs->pathExists($path)->willReturn(false);
        $resources = $this->getAllResources();
        $resources->shouldHaveCount(0);
    }
PSR0LocatorSpec