Inheritance: extends eZ\Publish\Core\MVC\Symfony\Matcher\ContentBased\MultipleValued
Example #1
0
 /**
  * @dataProvider matchContentInfoProvider
  * @covers eZ\Publish\Core\MVC\Symfony\Matcher\ContentBased\Id\Content::matchContentInfo
  * @covers eZ\Publish\Core\MVC\Symfony\Matcher\ContentBased\MultipleValued::setMatchingConfig
  *
  * @param int|int[] $matchingConfig
  * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo
  * @param bool $expectedResult
  */
 public function testMatchContentInfo($matchingConfig, ContentInfo $contentInfo, $expectedResult)
 {
     $this->matcher->setMatchingConfig($matchingConfig);
     $this->assertSame($expectedResult, $this->matcher->matchContentInfo($contentInfo));
 }