File manager - Edit - /home/jardides/www/Cloud/3rdparty/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchClosureDivisorTest.php
Back
<?php namespace Guzzle\Tests\Batch; use Guzzle\Batch\BatchClosureDivisor; /** * @covers Guzzle\Batch\BatchClosureDivisor */ class BatchClosureDivisorTest extends \Guzzle\Tests\GuzzleTestCase { /** * @expectedException Guzzle\Common\Exception\InvalidArgumentException */ public function testEnsuresCallableIsCallable() { $d = new BatchClosureDivisor(new \stdClass()); } public function testDividesBatch() { $queue = new \SplQueue(); $queue[] = 'foo'; $queue[] = 'baz'; $d = new BatchClosureDivisor(function (\SplQueue $queue, $context) { return array( array('foo'), array('baz') ); }, 'Bar!'); $batches = $d->createBatches($queue); $this->assertEquals(array(array('foo'), array('baz')), $batches); } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.03 |
proxy
|
phpinfo
|
Settings