eZ\Publish\Core\Search\Legacy\Tests\Content\Location\HandlerLocationTest::testFullTextFilterStopwordRemoval PHP Method

testFullTextFilterStopwordRemoval() public method

    public function testFullTextFilterStopwordRemoval()
    {
        $handler = $this->getContentSearchHandler(array('stopWordThresholdFactor' => 0.1));
        $this->assertSearchResults(array(), $handler->findLocations(new LocationQuery(array('filter' => new Criterion\FullText('the'), 'limit' => 10))));
    }
HandlerLocationTest