Skip to content

Commit

Permalink
Merge branch '10.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 6, 2024
2 parents 6059dcd + 13087a8 commit 67a7e65
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions tests/unit/Util/FilesystemTest.php
@@ -0,0 +1,27 @@
<?php declare(strict_types=1);
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPUnit\Util;

use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Small;
use PHPUnit\Framework\TestCase;

#[CoversClass(Filesystem::class)]
#[Small]
final class FilesystemTest extends TestCase
{
public function testCanResolvePathOrStream(): void
{
$this->assertSame('php://stdout', Filesystem::resolvePathOrStream('php://stdout'));
$this->assertSame('socket://hostname:port', Filesystem::resolvePathOrStream('socket://hostname:port'));
$this->assertSame(__FILE__, Filesystem::resolvePathOrStream(__FILE__));
$this->assertFalse(Filesystem::resolvePathOrStream(__DIR__ . '/does-not-exist'));
}
}

0 comments on commit 67a7e65

Please sign in to comment.