setValue() public method

public setValue ( $value )
Exemplo n.º 1
0
 public function testSetValue()
 {
     $cookie = new THttpCookie('name', 'value');
     $cookie->setValue('newValue');
     self::assertEquals('newValue', $cookie->getValue());
 }