mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Iter;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Collection;
|
|
use Psl\Iter;
|
|
|
|
class ContainsKeyTest extends TestCase
|
|
{
|
|
/**
|
|
* @psalm-template Tk
|
|
* @psalm-template Tv
|
|
*
|
|
* @psalm-param iterable<Tk, Tv> $iterable
|
|
* @psalm-param Tk $key
|
|
*
|
|
* @dataProvider provideData
|
|
*/
|
|
public function testContainsKey(bool $expected, iterable $iterable, $key): void
|
|
{
|
|
self::assertSame($expected, Iter\contains_key($iterable, $key));
|
|
}
|
|
|
|
public function provideData(): iterable
|
|
{
|
|
yield [false, [], 0];
|
|
yield [false, [], 1];
|
|
yield [true, [1, 2], 0];
|
|
yield [true, [1, 2], 1];
|
|
yield [false, [1, 2], 2];
|
|
yield [true, ['hello' => 'world'], 'hello'];
|
|
yield [false, ['hello' => 'world'], 'hellO'];
|
|
yield [false, ['hello' => 'world'], 'world'];
|
|
yield [false, [null => null], null];
|
|
yield [true, new Collection\Vector([1, 2]), 0];
|
|
yield [true, new Collection\Vector([1, 2]), 1];
|
|
yield [false, new Collection\Vector([1, 2]), 2];
|
|
yield [true, (fn () => yield 'foo' => 'bar')(), 'foo'];
|
|
yield [false, (fn () => yield 'foo' => 'bar')(), 'bar'];
|
|
}
|
|
}
|