summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/test/lib/Elastica/Test/Aggregation/BaseAggregationTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/test/lib/Elastica/Test/Aggregation/BaseAggregationTest.php')
-rw-r--r--vendor/ruflin/elastica/test/lib/Elastica/Test/Aggregation/BaseAggregationTest.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/test/lib/Elastica/Test/Aggregation/BaseAggregationTest.php b/vendor/ruflin/elastica/test/lib/Elastica/Test/Aggregation/BaseAggregationTest.php
new file mode 100644
index 00000000..5569ca78
--- /dev/null
+++ b/vendor/ruflin/elastica/test/lib/Elastica/Test/Aggregation/BaseAggregationTest.php
@@ -0,0 +1,28 @@
+<?php
+
+namespace Elastica\Test\Aggregation;
+
+
+use Elastica\Index;
+use Elastica\Test\Base;
+
+abstract class BaseAggregationTest extends Base
+{
+ /**
+ * @var Index
+ */
+ protected $_index;
+
+ protected function tearDown()
+ {
+ parent::tearDown();
+ if ($this->_index instanceof Index) {
+ $this->_index->delete();
+ }
+ }
+
+ protected function _createIndex($name = 'test', $delete = true, $shards = 1)
+ {
+ return parent::_createIndex('test_aggregation_' . $name, $delete, $shards);
+ }
+} \ No newline at end of file