
| Current Path : /var/www/html/12park_old/vendor/symfony/validator/Tests/Mapping/Cache/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park_old/vendor/symfony/validator/Tests/Mapping/Cache/Psr6CacheTest.php |
<?php
namespace Symfony\Component\Validator\Tests\Mapping\Cache;
use Symfony\Component\Cache\Adapter\ArrayAdapter;
use Symfony\Component\Validator\Mapping\Cache\Psr6Cache;
use Symfony\Component\Validator\Mapping\ClassMetadata;
/**
* @author Kévin Dunglas <dunglas@gmail.com>
*/
class Psr6CacheTest extends AbstractCacheTest
{
protected function setUp()
{
$this->cache = new Psr6Cache(new ArrayAdapter());
}
public function testNameCollision()
{
$metadata = new ClassMetadata('Foo\\Bar');
$this->cache->write($metadata);
$this->assertFalse($this->cache->has('Foo_Bar'));
}
public function testNameWithInvalidChars()
{
$metadata = new ClassMetadata('class@anonymous/path/file');
$this->cache->write($metadata);
$this->assertTrue($this->cache->has('class@anonymous/path/file'));
}
}