Esempio n. 1
0
 /**
  * @covers NativeSession::set
  * @return array
  */
 public function testSet()
 {
     $key = 'testKey';
     $value = 'testValue';
     $this->object->set($key, $value);
     $assert = $this->object->get($key);
     $expected = 'testValue';
     $this->assertEquals($expected, $assert);
     return array('key' => $key, 'value' => $expected);
 }