endtoend-test-psl/tests/Psl/Str/Byte/WrapTest.php

37 lines
812 B
PHP
Raw Normal View History

2019-12-24 01:52:07 +01:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Str\Byte;
use PHPUnit\Framework\TestCase;
2019-12-26 23:10:57 +01:00
use Psl\Str;
use Psl\Str\Byte;
2019-12-24 01:52:07 +01:00
class WrapTest extends TestCase
{
2019-12-26 23:10:57 +01:00
/**
* @dataProvider provideData
*/
public function testWrap(
string $expected,
string $str,
int $width = 75,
string $break = "\n",
bool $cut = false
): void {
2019-12-26 23:10:57 +01:00
self::assertSame($expected, Byte\wrap($str, $width, $break, $cut));
}
public function provideData(): array
{
return [
['Hello', 'Hello'],
['', ''],
['☕ ~ ☕ ~ ☕', '☕ ☕ ☕', 1, ' ~ '],
["héllö,-\nwôrld", 'héllö, wôrld', 8, "-\n", true],
['مرحبا<br />بكم', 'مرحبا بكم', 3, '<br />', false],
];
}
2019-12-24 01:52:07 +01:00
}