Skip to content
Snippets Groups Projects
Commit d1fd5080 authored by Simonas Šerlinskas's avatar Simonas Šerlinskas
Browse files

Merge pull request #2 from bcremer/fix-query-endpoint-dependency

Fix query endpoint dependency
parents db80a3bd 13b2bc7e
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,8 @@
],
"require": {
"php": ">=5.4",
"symfony/serializer": "~2.7"
"symfony/serializer": "~2.7",
"symfony/options-resolver": "~2.7"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
......
<?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\SearchEndpoint;
use ONGR\ElasticsearchDSL\SearchEndpoint\QueryEndpoint;
/**
* Unit test class for the QueryEndpoint.
*/
class QueryEndpointTest extends \PHPUnit_Framework_TestCase
{
/**
* Tests constructor.
*/
public function testItCanBeInstantiated()
{
$this->assertInstanceOf('ONGR\ElasticsearchDSL\SearchEndpoint\QueryEndpoint', new QueryEndpoint());
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment