Commit 652e0c1d authored by Bas de Nooijer's avatar Bas de Nooijer

Adjusted unittest coverage

parent dd7f5d00
...@@ -47,6 +47,8 @@ ...@@ -47,6 +47,8 @@
* @package Solarium * @package Solarium
* @subpackage Plugin * @subpackage Plugin
*/ */
// @codeCoverageIgnoreStart
class Solarium_Plugin_ParallelExecution extends Solarium_Plugin_Abstract class Solarium_Plugin_ParallelExecution extends Solarium_Plugin_Abstract
{ {
...@@ -61,7 +63,6 @@ class Solarium_Plugin_ParallelExecution extends Solarium_Plugin_Abstract ...@@ -61,7 +63,6 @@ class Solarium_Plugin_ParallelExecution extends Solarium_Plugin_Abstract
*/ */
public function execute($queries) public function execute($queries)
{ {
// @codeCoverageIgnoreStart
$adapter = $this->_client->setAdapter('Solarium_Client_Adapter_Curl')->getAdapter(); $adapter = $this->_client->setAdapter('Solarium_Client_Adapter_Curl')->getAdapter();
// create handles and add all handles to the multihandle // create handles and add all handles to the multihandle
...@@ -96,7 +97,7 @@ class Solarium_Plugin_ParallelExecution extends Solarium_Plugin_Abstract ...@@ -96,7 +97,7 @@ class Solarium_Plugin_ParallelExecution extends Solarium_Plugin_Abstract
curl_multi_close($multiHandle); curl_multi_close($multiHandle);
return $results; return $results;
// @codeCoverageIgnoreEnd
} }
} }
\ No newline at end of file // @codeCoverageIgnoreEnd
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment