/**
  * Testing test().
  *
  * @return void
  */
 public function testTest()
 {
     if ($this->memcacheAvailable) {
         $this->assertThat($this->object->test(), $this->isTrue(), 'Claims memcache is not loaded.');
     } else {
         $this->markTestSkipped('This caching method is not supported on this system.');
     }
 }