mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
19 lines
417 B
PHP
19 lines
417 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace Psl\Tests\Str;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use Psl\Str;
|
||
|
||
class ConcatTest extends TestCase
|
||
{
|
||
public function testConcat(): void
|
||
{
|
||
self::assertSame('', Str\concat(''));
|
||
self::assertSame('abc', Str\concat('a', 'b', 'c'));
|
||
self::assertSame('مرحبا بكم', Str\concat(...['م', 'ر', 'ح', 'ب', 'ا', ' ', 'ب', 'ك', 'م']));
|
||
}
|
||
}
|