/**
  * @covers Robo47_Service_Gravatar::setCache
  * @covers Robo47_Service_Gravatar::_cacheFromRegistry
  */
 public function testSetCacheNull()
 {
     $service = new Robo47_Service_Gravatar();
     $service->setCache(null);
     $this->assertNull($service->getCache(), 'Setting cache null did not work');
 }