mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
34 lines
827 B
PHP
34 lines
827 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Str;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Str;
|
|
|
|
class SearchLastCiTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideData
|
|
*/
|
|
public function testSearchLastCi(?int $expected, string $haystack, string $needle, int $offset = 0): void
|
|
{
|
|
self::assertSame($expected, Str\search_last_ci($haystack, $needle, $offset));
|
|
}
|
|
|
|
public function provideData(): array
|
|
{
|
|
return [
|
|
[7, 'Hello, you!', 'You', ],
|
|
[7, 'Hello, You!', 'You', ],
|
|
[8, '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],
|
|
];
|
|
}
|
|
}
|