endtoend-test-psl/tests/Psl/Str/TrimRightTest.php
2020-10-15 11:05:30 +02:00

61 lines
1.4 KiB
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Str;
use PHPUnit\Framework\TestCase;
use Psl\Str;
final class TrimRightTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testTrimRight(string $expected, string $string, ?string $chars = null): void
{
static::assertSame($expected, Str\trim_right($string, $chars));
}
public function provideData(): array
{
return [
[
" Hello World\t!!!",
" Hello World\t!!!\n",
null,
],
[
" Hello World\t!!!\n",
" Hello World\t!!!\n",
' ',
],
[
" Hello World\t!!!",
" Hello World\t!!!\n",
"\n",
],
[
" Hello World\t",
" Hello World\t!!!\n",
"\n!",
],
[
' Hello World',
" Hello World\t!!!\n",
"\n!\t",
],
[
" Hello World\t",
" Hello World\t!!!\n",
" \n!",
],
[
" Hello World\t!!! \n",
" Hello World\t!!! \n",
' ',
],
];
}
}