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

30 lines
597 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Str;
use PHPUnit\Framework\TestCase;
use Psl\Str;
class CapitalizeTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testCapitalize(string $expected, string $value): void
{
self::assertSame($expected, Str\capitalize($value));
}
public function provideData(): array
{
return [
['Hello', 'hello', ],
['Hello, world', 'hello, world'],
['Alpha', 'Alpha', ],
['مرحبا بكم', 'مرحبا بكم', ],
];
}
}