public function ClassMetadataFactoryTest::testGetCacheDriver in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/ClassMetadataFactoryTest.php \Doctrine\Tests\Common\Persistence\Mapping\ClassMetadataFactoryTest::testGetCacheDriver()
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ ClassMetadataFactoryTest.php, line 26
Class
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
public function testGetCacheDriver() {
$this
->assertNull($this->cmf
->getCacheDriver());
$cache = new ArrayCache();
$this->cmf
->setCacheDriver($cache);
$this
->assertSame($cache, $this->cmf
->getCacheDriver());
}