mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 09:38:32 +01:00
17 lines
266 B
PHP
17 lines
266 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Env;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Env;
|
|
|
|
final class TempDirTest extends TestCase
|
|
{
|
|
public function testTempDir(): void
|
|
{
|
|
static::assertSame(sys_get_temp_dir(), Env\temp_dir());
|
|
}
|
|
}
|