From ed40f94f78ca76caeee252aede218f0b2db92c1c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mantas=20Marcinkevi=C4=8Dius?= <marc.mantas@gmail.com>
Date: Mon, 29 Aug 2016 11:28:22 +0300
Subject: [PATCH] added a test

---
 .../ExtendedStatsBucketAggregationTest.php    | 36 +++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 tests/Aggregation/Pipeline/ExtendedStatsBucketAggregationTest.php

diff --git a/tests/Aggregation/Pipeline/ExtendedStatsBucketAggregationTest.php b/tests/Aggregation/Pipeline/ExtendedStatsBucketAggregationTest.php
new file mode 100644
index 0000000..4868907
--- /dev/null
+++ b/tests/Aggregation/Pipeline/ExtendedStatsBucketAggregationTest.php
@@ -0,0 +1,36 @@
+<?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\ExtendedStatsBucketAggregation;
+
+/**
+ * Unit test for stats bucket aggregation.
+ */
+class ExtendedStatsBucketAggregationTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Tests toArray method.
+     */
+    public function testToArray()
+    {
+        $aggregation = new ExtendedStatsBucketAggregation('acme', 'test');
+
+        $expected = [
+            'extended_stats_bucket' => [
+                'buckets_path' => 'test',
+            ],
+        ];
+
+        $this->assertEquals($expected, $aggregation->toArray());
+    }
+}
-- 
GitLab