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

33 lines
829 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\Byte;
2019-12-24 01:52:07 +01:00
class SplitTest extends TestCase
{
2019-12-26 23:10:57 +01:00
/**
* @dataProvider provideData
*/
public function testSplit(array $expected, string $string, string $delimiter, ?int $length = null): void
{
self::assertSame($expected, Byte\split($string, $delimiter, $length));
}
public function provideData(): array
{
return [
[[], '', '', 1],
[['H', 'e', 'l', 'l', 'o'], 'Hello', ''],
[['Hello'], 'Hello', '', 1],
[['H', 'ello'], 'Hello', '', 2],
[['Hello, World!'], 'Hello, World!', ' ', 1],
[['Hello,', 'World!'], 'Hello, World!', ' '],
[['Hello,', 'World!'], 'Hello, World!', ' ', 2],
];
}
2019-12-24 01:52:07 +01:00
}