endtoend-test-psl/tests/Psl/Str/Byte/TrimTest.php
2020-01-02 00:00:08 +01:00

56 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Str\Byte;
use PHPUnit\Framework\TestCase;
use Psl\Str\Byte;
class TrimTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testTrim(string $expected, string $string, ?string $chars = null): void
{
self::assertSame($expected, Byte\trim($string, $chars));
}
public function provideData(): array
{
return [
[
"Hello Wôrld\t!!!",
" Hello Wôrld\t!!!\n",
null,
],
[
"Hello Wôrld\t!!!\n",
" Hello Wôrld\t!!!\n",
' ',
],
[
" Héllö World\t!!!",
" Héllö World\t!!!\n",
"\n",
],
[
"Héllö World\t",
" Héllö World\t!!!\n",
" \n!",
],
[
"Héllö World",
" Héllö World\t!!!\n",
" \n!\t",
],
[
"Héllö Wôrld\t!!! \n",
" Héllö Wôrld\t!!! \n",
' ',
],
];
}
}