/**
  * @todo Implement testRemove().
  */
 public function testRemove()
 {
     $this->object->store(42, '_testing', 'And this is the cache that tries men\'s souls');
     $this->assertThat($this->object->get(42, '_testing', true), $this->equalTo('And this is the cache that tries men\'s souls'));
     $this->assertThat($this->object->remove(42, '_testing'), $this->isTrue());
     $this->assertThat($this->object->get(42, '_testing', true), $this->isFalse());
 }