endtoend-test-psl/tests/Psl/Str/OrdTest.php
2019-12-27 05:42:24 +01:00

31 lines
522 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare(strict_types=1);
namespace Psl\Tests\Str;
use PHPUnit\Framework\TestCase;
use Psl\Str;
class OrdTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testOrd(int $expected, string $value): void
{
self::assertSame($expected, Str\ord($value));
}
public function provideData(): array
{
return [
[1605, 'م'],
[48, '0'],
[38, '&'],
[1575, 'ا'],
[65, 'A'],
];
}
}