mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
31 lines
556 B
PHP
31 lines
556 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Str\Byte;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Str\Byte;
|
|
|
|
class UppercaseTest extends TestCase
|
|
{
|
|
|
|
/**
|
|
* @dataProvider provideData
|
|
*/
|
|
public function testUppercase(string $expected, string $str): void
|
|
{
|
|
self::assertSame($expected, Byte\uppercase($str));
|
|
}
|
|
|
|
public function provideData(): array
|
|
{
|
|
return [
|
|
['HELLO', 'hello'],
|
|
['HELLO', 'helLO'],
|
|
['HELLO', 'Hello'],
|
|
['1337', '1337'],
|
|
];
|
|
}
|
|
}
|