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

30 lines
597 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
class CapitalizeTest extends TestCase
{
2019-12-26 23:10:57 +01:00
/**
* @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', ],
['مرحبا بكم', 'مرحبا بكم', ],
];
}
2019-12-24 01:52:07 +01:00
}