/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Cache/Tests/LockRegistryTest.php
29 строк
794 B
Christian Flothmann
harden LockRegistry tests, consider PHP files only
05 авг 2023, 11:32
05 авг 2023, 11:32
98fe0a2
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Cache\Tests; use PHPUnit\Framework\TestCase; use Symfony\Component\Cache\LockRegistry; class LockRegistryTest extends TestCase { public function testFiles() { if ('\\' === \DIRECTORY_SEPARATOR) { $this->markTestSkipped('LockRegistry is disabled on Windows'); } $lockFiles = LockRegistry::setFiles([]); LockRegistry::setFiles($lockFiles); $expected = array_map('realpath', glob(__DIR__.'/../Adapter/*.php')); $this->assertSame($expected, $lockFiles); } }