Ejemplo n.º 1
0
 public function testDropDoesNothing()
 {
     $this->cache->expects($this->never())->method('fetch');
     $this->cache->expects($this->never())->method('delete');
     $instance = new BlobStore('Foo', $this->cache);
     $instance->drop();
 }