get() public method

{@inheritDoc}
public get ( )
コード例 #1
0
 public function testGet()
 {
     $session = new FuelPHPSession($store = m::mock('Fuel\\Core\\Session_Driver'), 'foo');
     $store->shouldReceive('get')->with('foo')->once()->andReturn('bar');
     $this->assertEquals('bar', $session->get());
 }