コード例 #1
0
 public function testShouldAlwaysReturnTrueOnSaveButNotStoreAnything()
 {
     $cache = new VoidCache();
     $this->assertTrue($cache->save('foo', 'fooVal'));
     $this->assertFalse($cache->contains('foo'));
     $this->assertFalse($cache->fetch('foo'));
 }