Skip to content
Snippets Groups Projects
Commit 13b2bc7e authored by Benjamin Cremer's avatar Benjamin Cremer
Browse files

Fix missing dependencies for QueryEndpoint

parent 33734124
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