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

19 lines
355 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Str;
use PHPUnit\Framework\TestCase;
use Psl\Str;
final class IsEmptyTest extends TestCase
{
public function testIsEmpty(): void
{
static::assertTrue(Str\is_empty(''));
static::assertFalse(Str\is_empty(Str\chr(0)));
static::assertFalse(Str\is_empty('hello'));
}
}