mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
49 lines
1006 B
PHP
49 lines
1006 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Iter;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Iter;
|
|
|
|
class ZipTest extends TestCase
|
|
{
|
|
public function testZip(): void
|
|
{
|
|
$result = Iter\zip(
|
|
[1, 2, 3, 4],
|
|
[5, 6, 7, 8, 9],
|
|
[10, 11, 12]
|
|
);
|
|
|
|
static::assertCount(3, $result);
|
|
|
|
$k = $result->key();
|
|
$v = $result->current();
|
|
static::assertSame([0, 0, 0], $k);
|
|
static::assertSame([1, 5, 10], $v);
|
|
|
|
$result->next();
|
|
|
|
$k = $result->key();
|
|
$v = $result->current();
|
|
static::assertSame([1, 1, 1], $k);
|
|
static::assertSame([2, 6, 11], $v);
|
|
|
|
$result->next();
|
|
|
|
$k = $result->key();
|
|
$v = $result->current();
|
|
static::assertSame([2, 2, 2], $k);
|
|
static::assertSame([3, 7, 12], $v);
|
|
}
|
|
|
|
public function testZipWithZeroIterables(): void
|
|
{
|
|
$result = Iter\zip(...[]);
|
|
|
|
self::assertCount(0, $result);
|
|
}
|
|
}
|