endtoend-test-psl/tests/Psl/Env/ArgsTest.php

17 lines
254 B
PHP
Raw Normal View History

2020-08-18 05:51:44 +02:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Env;
use PHPUnit\Framework\TestCase;
use Psl\Env;
final class ArgsTest extends TestCase
{
public function testArgs(): void
{
static::assertSame($GLOBALS['argv'], Env\args());
2020-08-18 05:51:44 +02:00
}
}