set() public method

public set ( $key, $value )
Example #1
0
 public function testNoCache()
 {
     $cache = new NoCacheHandler();
     $this->assertNull($cache->get('pepe'));
     $cache->set('pepe', 'lala');
     $this->assertNull($cache->get('pepe'));
     $cache->delete('pepe');
     $this->assertNull($cache->get('pepe'));
 }