get() public method

{@inheritDoc}
public get ( )
Esempio n. 1
0
 public function testGet()
 {
     $cookie = new CICookie($input = m::mock('CI_Input'), 'foo');
     $input->shouldReceive('cookie')->with('foo')->once()->andReturn(serialize('baz'));
     $this->assertEquals('baz', $cookie->get());
 }