public function testGetReturnsValuesSet()
 {
     $cookies = array(array('domain' => '.example.com', 'path' => '/', 'secure' => true, 'name' => 'foo', 'value' => 'bar'));
     $this->configuration->setCookies($cookies);
     $this->assertEquals($cookies, $this->configuration->setCookies($cookies)->getCookies());
 }