mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
17 lines
252 B
PHP
17 lines
252 B
PHP
|
<?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
|
||
|
{
|
||
|
self::assertSame($GLOBALS['argv'], Env\args());
|
||
|
}
|
||
|
}
|