eZ\Publish\Core\Search\Legacy\Tests\Content\Location\HandlerLocationTest::testFullTextFilterStopwordRemoval PHP Метод

testFullTextFilterStopwordRemoval() публичный Метод

    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