summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/test/benchmark/ClientTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/test/benchmark/ClientTest.php')
-rw-r--r--vendor/ruflin/elastica/test/benchmark/ClientTest.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/ruflin/elastica/test/benchmark/ClientTest.php b/vendor/ruflin/elastica/test/benchmark/ClientTest.php
deleted file mode 100644
index e7a040f7..00000000
--- a/vendor/ruflin/elastica/test/benchmark/ClientTest.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-use Elastica\Client;
-use Elastica\Document;
-
-class ClientTest extends \PHPUnit_Framework_TestCase
-{
-
- public function testServersArray()
- {
- $client = new Client();
- $index = $client->getIndex('test');
- $index->create(array(), true);
- $type = $index->getType('test');
-
- $start = microtime(true);
-
- for ($i = 1; $i <= 10000; $i++) {
- $doc = new Document($i, array('test' => 1));
- $type->addDocument($doc);
- }
-
- // Refresh index
- $index->refresh();
-
- $end = microtime(true);
-
- //echo $end - $start;
-
- }
-}