endtoend-test-psl/tests/Psl/Str/ChrTest.php

31 lines
521 B
PHP
Raw Normal View History

2019-12-24 01:52:07 +01:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Str;
use PHPUnit\Framework\TestCase;
2019-12-26 23:10:57 +01:00
use Psl\Str;
2019-12-24 01:52:07 +01:00
class ChrTest extends TestCase
{
2019-12-26 23:10:57 +01:00
/**
* @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]
];
}
2019-12-24 01:52:07 +01:00
}