eZ\Publish\Core\MVC\Symfony\Matcher\Tests\ContentBased\DepthTest::matchLocationProvider PHP 메소드

matchLocationProvider() 공개 메소드

    public function matchLocationProvider()
    {
        return array(array(1, $this->getLocationMock(array('depth' => 1)), true), array(1, $this->getLocationMock(array('depth' => 2)), false), array(array(1, 3), $this->getLocationMock(array('depth' => 2)), false), array(array(1, 3), $this->getLocationMock(array('depth' => 3)), true), array(array(1, 3), $this->getLocationMock(array('depth' => 0)), false), array(array(0, 1), $this->getLocationMock(array('depth' => 0)), true));
    }