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

19 lines
355 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 IsEmptyTest extends TestCase
2019-12-24 01:52:07 +01:00
{
2019-12-26 23:10:57 +01:00
public function testIsEmpty(): void
{
static::assertTrue(Str\is_empty(''));
static::assertFalse(Str\is_empty(Str\chr(0)));
static::assertFalse(Str\is_empty('hello'));
2019-12-26 23:10:57 +01:00
}
2019-12-24 01:52:07 +01:00
}