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

19 lines
429 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
final class ConcatTest extends TestCase
2019-12-24 01:52:07 +01:00
{
2019-12-26 23:10:57 +01:00
public function testConcat(): void
{
static::assertSame('', Str\concat(''));
static::assertSame('abc', Str\concat('a', 'b', 'c'));
static::assertSame('مرحبا بكم', Str\concat(...['م', 'ر', 'ح', 'ب', 'ا', ' ', 'ب', 'ك', 'م']));
2019-12-26 23:10:57 +01:00
}
2019-12-24 01:52:07 +01:00
}