public function VoidCacheTest::testShouldAlwaysReturnFalseOnFetch in Plug 7
File
- lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ VoidCacheTest.php, line 20
Class
Namespace
Doctrine\Tests\Common\CacheCode
public function testShouldAlwaysReturnFalseOnFetch() {
$cache = new VoidCache();
$this
->assertFalse($cache
->fetch('foo'));
$this
->assertFalse($cache
->fetch('bar'));
}