mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 09:38:32 +01:00
30 lines
658 B
PHP
30 lines
658 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Str;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Str;
|
|
|
|
class PadLeftTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideData
|
|
*/
|
|
public function testPadLeft(string $expected, string $str, int $total_length, string $pad_string = ' '): void
|
|
{
|
|
self::assertSame($expected, Str\pad_left($str, $total_length, $pad_string));
|
|
}
|
|
|
|
public function provideData(): array
|
|
{
|
|
return [
|
|
[' aaay', 'aaay', 5],
|
|
['Aaaay', 'aaay', 5, 'A'],
|
|
['Yeet', 'eet', 4, 'Yeeeee'],
|
|
['ممممرحبا', 'مرحبا', 8, 'م'],
|
|
];
|
|
}
|
|
}
|