@covers Symfony\Component\HttpFoundation\Cookie::getValue
public function testGetValue() {
$value = 'MyValue';
$cookie = new Cookie('MyCookie', $value);
$this
->assertSame($value, $cookie
->getValue(), '->getValue() returns the proper value');
}