mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
30 lines
726 B
PHP
30 lines
726 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Str;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Str;
|
|
|
|
class ReplaceTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideData
|
|
*/
|
|
public function testReplace(string $expected, string $haystack, string $needle, string $replacement): void
|
|
{
|
|
self::assertSame($expected, Str\replace($haystack, $needle, $replacement));
|
|
}
|
|
|
|
public function provideData(): array
|
|
{
|
|
return [
|
|
['Hello, you!', 'Hello, you!', 'You', 'World', ],
|
|
['Hello, World!', 'Hello, You!', 'You', 'World', ],
|
|
['مرحبا بكم', 'مرحبا سيف', 'سيف', 'بكم'],
|
|
['foo', 'foo', 'bar', 'baz'],
|
|
];
|
|
}
|
|
}
|