endtoend-test-psl/tests/Psl/Str/FoldTest.php
2020-10-15 11:05:30 +02:00

17 lines
251 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Str;
use PHPUnit\Framework\TestCase;
use Psl\Str;
final class FoldTest extends TestCase
{
public function testFold(): void
{
static::assertSame('ssoo', Str\fold('ẞOO'));
}
}