endtoend-test-psl/tests/Psl/Str/SearchLastTest.php

34 lines
826 B
PHP
Raw Normal View History

2019-12-24 01:52:07 +01:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Str;
use PHPUnit\Framework\TestCase;
2019-12-26 23:10:57 +01:00
use Psl\Str;
2019-12-24 01:52:07 +01:00
class SearchLastTest extends TestCase
{
2019-12-26 23:10:57 +01:00
/**
* @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],
];
}
2019-12-24 01:52:07 +01:00
}