mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-03 10:08:33 +01:00
17 lines
301 B
PHP
17 lines
301 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/bin/phpunit'), Env\current_exec());
|
|
}
|
|
}
|