public function testFlushAll()
 {
     $this->assertFalse($this->cache->contains('foo'));
     $this->cache->save('foo', 'bar');
     $this->assertTrue($this->cache->contains('foo'));
     $this->cache->flushAll();
     $this->assertFalse($this->cache->contains('foo'));
 }