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

31 lines
685 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
final class MetaphoneTest extends TestCase
2019-12-24 01:52:07 +01:00
{
2019-12-26 23:10:57 +01:00
/**
* @dataProvider provideData
*/
public function testMetaphone(?string $expected, string $str, int $phonemes = 0): void
{
static::assertSame($expected, Str\metaphone($str, $phonemes));
2019-12-26 23:10:57 +01:00
}
public function provideData(): array
{
return [
['HL', 'hello'],
['HLWRLT', 'Hello, World !!', 10],
2019-12-26 23:10:57 +01:00
['PPLLNKTBTSTNWLLWSFNTX0R', 'People linked by destiny will always find each other.'],
2019-12-26 23:10:57 +01:00
['', 'سيف'],
['', '1337'],
];
}
2019-12-24 01:52:07 +01:00
}