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
|
|
|
|
|
2020-10-15 10:18:03 +02:00
|
|
|
|
final class OrdTest extends TestCase
|
2019-12-24 01:52:07 +01:00
|
|
|
|
{
|
2019-12-26 23:10:57 +01:00
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideData
|
|
|
|
|
*/
|
|
|
|
|
public function testOrd(int $expected, string $value): void
|
|
|
|
|
{
|
2020-10-15 10:18:03 +02:00
|
|
|
|
static::assertSame($expected, Str\ord($value));
|
2019-12-26 23:10:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideData(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
[1605, 'م'],
|
|
|
|
|
[48, '0'],
|
|
|
|
|
[38, '&'],
|
|
|
|
|
[1575, 'ا'],
|
|
|
|
|
[65, 'A'],
|
|
|
|
|
];
|
|
|
|
|
}
|
2019-12-24 01:52:07 +01:00
|
|
|
|
}
|