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

17 lines
266 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 TempDirTest extends TestCase
2020-08-18 05:51:44 +02:00
{
public function testTempDir(): void
{
static::assertSame(sys_get_temp_dir(), Env\temp_dir());
}
}