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