public function LegacyApcCacheTest::testRead in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/Mapping/Cache/LegacyApcCacheTest.php \Symfony\Component\Validator\Tests\Mapping\Cache\LegacyApcCacheTest::testRead()
File
- vendor/
symfony/ validator/ Tests/ Mapping/ Cache/ LegacyApcCacheTest.php, line 65
Class
- LegacyApcCacheTest
- @group legacy
Namespace
Symfony\Component\Validator\Tests\Mapping\CacheCode
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'));
$cache = new ApcCache('foo');
$cache
->write($meta);
$this
->assertInstanceOf('Symfony\\Component\\Validator\\Mapping\\ClassMetadata', $cache
->read('bar'), '->read() returns metadata');
}