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