Example #1
0
 public function testSetGetHydrationCacheImpl()
 {
     $this->assertSame(null, $this->configuration->getHydrationCacheImpl());
     // defaults
     $queryCacheImpl = $this->getMock('Doctrine\\Common\\Cache\\Cache');
     $this->configuration->setHydrationCacheImpl($queryCacheImpl);
     $this->assertSame($queryCacheImpl, $this->configuration->getHydrationCacheImpl());
 }