get() public method

{@inheritDoc}
public get ( )
 public function testGet()
 {
     $session = new CISession($store = m::mock('CI_Session'), 'foo');
     $store->shouldReceive('userdata')->with('foo')->once()->andReturn(serialize('bar'));
     $this->assertEquals('bar', $session->get());
 }