eZ\Publish\Core\MVC\Symfony\Matcher\Tests\ContentBased\Matcher\Id\ContentTypeTest::matchContentInfoProvider PHP Method

matchContentInfoProvider() public method

    public function matchContentInfoProvider()
    {
        $data = array();
        $data[] = array(123, $this->generateContentInfoForContentType(123), true);
        $data[] = array(123, $this->generateContentInfoForContentType(456), false);
        $data[] = array(array(123, 789), $this->generateContentInfoForContentType(456), false);
        $data[] = array(array(123, 789), $this->generateContentInfoForContentType(789), true);
        return $data;
    }