eZ\Publish\Core\MVC\Symfony\Matcher\Tests\ContentBased\DepthTest::matchLocationProvider PHP Method

matchLocationProvider() public method

    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));
    }