%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/ongr/elasticsearch-dsl/tests/Unit/ |
Current File : /home/graphicd/public_html/vebto/vendor/ongr/elasticsearch-dsl/tests/Unit/SearchTest.php |
<?php /* * This file is part of the ONGR package. * * (c) NFQ Technologies UAB <info@nfq.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace ONGR\ElasticsearchDSL\Tests\Unit; use ONGR\ElasticsearchDSL\Query\TermLevel\ExistsQuery; use ONGR\ElasticsearchDSL\Query\TermLevel\TermQuery; use ONGR\ElasticsearchDSL\Search; use ONGR\ElasticsearchDSL\Sort\FieldSort; use ONGR\ElasticsearchDSL\Suggest\Suggest; /** * Test for Search. */ class SearchTest extends \PHPUnit\Framework\TestCase { /** * Tests Search constructor. */ public function testItCanBeInstantiated() { $this->assertInstanceOf('ONGR\ElasticsearchDSL\Search', new Search()); } public function testScrollUriParameter() { $search = new Search(); $search->setScroll('5m'); $this->assertArrayHasKey('scroll', $search->getUriParams()); } }