Example #1
0
 public function testSet()
 {
     $expected = (object) array('param1' => 'string1', 'param2' => 'string2', 'param3' => 'string3');
     $this->manager->set('testStdClass', $expected);
     $this->assertEquals(spl_object_hash($expected), spl_object_hash($this->manager->get('testStdClass')));
 }