Beispiel #1
0
 public function testGetType()
 {
     $reply = $this->key->getType();
     $this->assertEquals('none', $reply);
     $this->key->getRediska()->set($this->key->getName(), 1);
     $reply = $this->key->getType();
     $this->assertEquals('string', $reply);
 }