From a9cc2615aa3b41237288b8413fdaf3dd769bba6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mantas=20Marcinkevi=C4=8Dius?= <marc.mantas@gmail.com> Date: Mon, 29 Aug 2016 10:21:22 +0300 Subject: [PATCH] added a test --- .../Pipeline/AvgBucketAggregationTest.php | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 tests/Aggregation/Pipeline/AvgBucketAggregationTest.php diff --git a/tests/Aggregation/Pipeline/AvgBucketAggregationTest.php b/tests/Aggregation/Pipeline/AvgBucketAggregationTest.php new file mode 100644 index 0000000..05a350c --- /dev/null +++ b/tests/Aggregation/Pipeline/AvgBucketAggregationTest.php @@ -0,0 +1,39 @@ +<?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\Aggregation\Pipeline; + +use ONGR\ElasticsearchDSL\Aggregation\Pipeline\AvgBucketAggregation; + +/** + * Unit test for avg_bucket aggregation. + */ +class AvgBucketAggregationTest extends \PHPUnit_Framework_TestCase +{ + /** + * Tests getArray method. + */ + public function testGetArray() + { + $aggregation = new AvgBucketAggregation('foo', 'foo>bar'); + + $this->assertEquals(['buckets_path' => 'foo>bar'], $aggregation->getArray()); + } + + /** + * Tests getType method. + */ + public function testAvgBucketAggregationGetType() + { + $aggregation = new AvgBucketAggregation('foo', 'foo>bar'); + $this->assertEquals('avg_bucket', $aggregation->getType()); + } +} -- GitLab