Example #1
0
 public function testSetGetCas()
 {
     $key = new Key();
     $this->assertNull($key->getCas());
     $key->setCas(19);
     $this->assertEquals(19, $key->getCas());
 }