public function testSetStringConvertsToCookie()
 {
     // Create our collection with NO data
     $data_collection = new ResponseCookieDataCollection();
     // Set our data from our test data
     $data_collection->set('first', 'value');
     $this->assertNotSame('value', $data_collection->get('first'));
     $this->assertTrue($data_collection->get('first') instanceof ResponseCookie);
 }