forget() public method

{@inheritDoc}
public forget ( )
Beispiel #1
0
 public function testForget()
 {
     $cookie = new CICookie($input = m::mock('CI_Input'), 'foo');
     $input->shouldReceive('set_cookie')->with(['name' => 'foo', 'value' => '', 'expiry' => ''])->once();
     $cookie->forget();
 }