eZ\Publish\Core\Search\Legacy\Tests\Content\HandlerContentTest::testContentNotCombinatorFilter PHP Method

testContentNotCombinatorFilter() public method

    public function testContentNotCombinatorFilter()
    {
        $this->assertSearchResults(array(4), $this->getContentSearchHandler()->findContent(new Query(array('filter' => new Criterion\LogicalAnd(array(new Criterion\ContentId(array(1, 4, 10)), new Criterion\LogicalNot(new Criterion\ContentId(array(10, 12))))), 'limit' => 10))));
    }
HandlerContentTest