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);
}}