X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fsymfony%2Fvalidator%2FTests%2FMapping%2FCache%2FDoctrineCacheTest.php;fp=vendor%2Fsymfony%2Fvalidator%2FTests%2FMapping%2FCache%2FDoctrineCacheTest.php;h=6296030fd7dff17ddf43dce308a6100792dc4fa9;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hp=19b29227d6d8d6f0451d25f0ba8c274dad081da7;hpb=aea91e65e895364e460983b890e295aa5d5540a5;p=yaffs-website diff --git a/vendor/symfony/validator/Tests/Mapping/Cache/DoctrineCacheTest.php b/vendor/symfony/validator/Tests/Mapping/Cache/DoctrineCacheTest.php index 19b29227d..6296030fd 100644 --- a/vendor/symfony/validator/Tests/Mapping/Cache/DoctrineCacheTest.php +++ b/vendor/symfony/validator/Tests/Mapping/Cache/DoctrineCacheTest.php @@ -12,72 +12,10 @@ namespace Symfony\Component\Validator\Tests\Mapping\Cache; use Doctrine\Common\Cache\ArrayCache; -use PHPUnit\Framework\TestCase; use Symfony\Component\Validator\Mapping\Cache\DoctrineCache; -class DoctrineCacheTest extends TestCase +class DoctrineCacheTest extends AbstractCacheTest { - private $cache; - - public function testWrite() - { - $meta = $this->getMockBuilder('Symfony\\Component\\Validator\\Mapping\\ClassMetadata') - ->disableOriginalConstructor() - ->setMethods(array('getClassName')) - ->getMock(); - - $meta->expects($this->once()) - ->method('getClassName') - ->will($this->returnValue('bar')); - - $this->cache->write($meta); - - $this->assertInstanceOf( - 'Symfony\\Component\\Validator\\Mapping\\ClassMetadata', - $this->cache->read('bar'), - 'write() stores metadata' - ); - } - - public function testHas() - { - $meta = $this->getMockBuilder('Symfony\\Component\\Validator\\Mapping\\ClassMetadata') - ->disableOriginalConstructor() - ->setMethods(array('getClassName')) - ->getMock(); - - $meta->expects($this->once()) - ->method('getClassName') - ->will($this->returnValue('bar')); - - $this->assertFalse($this->cache->has('bar'), 'has() returns false when there is no entry'); - - $this->cache->write($meta); - $this->assertTrue($this->cache->has('bar'), 'has() returns true when the is an entry'); - } - - public function testRead() - { - $meta = $this->getMockBuilder('Symfony\\Component\\Validator\\Mapping\\ClassMetadata') - ->disableOriginalConstructor() - ->setMethods(array('getClassName')) - ->getMock(); - - $meta->expects($this->once()) - ->method('getClassName') - ->will($this->returnValue('bar')); - - $this->assertFalse($this->cache->read('bar'), 'read() returns false when there is no entry'); - - $this->cache->write($meta); - - $this->assertInstanceOf( - 'Symfony\\Component\\Validator\\Mapping\\ClassMetadata', - $this->cache->read('bar'), - 'read() returns metadata' - ); - } - protected function setUp() { $this->cache = new DoctrineCache(new ArrayCache());