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

34 lines
826 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Str;
use PHPUnit\Framework\TestCase;
use Psl\Str;
class SearchLastTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testSearchLast(?int $expected, string $haystack, string $needle, int $offset = 0): void
{
self::assertSame($expected, Str\search_last($haystack, $needle, $offset));
}
public function provideData(): array
{
return [
[null, 'Hello, you!', 'You', ],
[7, 'Hello, You!', 'You', ],
[null, 'Ho! Ho! Ho!', 'ho', ],
[8, 'Ho! Ho! Ho!', 'Ho', ],
[7, 'Hello, You!', 'You', 5],
[null, 'Hello, World!', 'You', 5],
[6, 'مرحبا سيف', 'سيف', 4],
[null, 'foo', 'bar', 2],
];
}
}