mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-11 16:49:40 +01:00
17 lines
313 B
PHP
17 lines
313 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Psl\Tests\Env;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Psl\Env;
|
||
|
|
||
|
class CurrentExecTest extends TestCase
|
||
|
{
|
||
|
public function testCurrentExe(): void
|
||
|
{
|
||
|
self::assertSame(realpath(__DIR__ . '/../../../vendor/phpunit/phpunit/phpunit'), Env\current_exec());
|
||
|
}
|
||
|
}
|