mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
31 lines
521 B
PHP
31 lines
521 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace Psl\Tests\Str;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use Psl\Str;
|
||
|
||
class ChrTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider provideData
|
||
*/
|
||
public function testChr(string $expected, int $value): void
|
||
{
|
||
self::assertSame($expected, Str\chr($value));
|
||
}
|
||
|
||
public function provideData(): array
|
||
{
|
||
return [
|
||
['م', 1605],
|
||
['0', 48],
|
||
['&', 38],
|
||
['ا', 1575],
|
||
['A', 65]
|
||
];
|
||
}
|
||
}
|