/**
  * Test if prefix is not auto-set when it is already set.
  */
 public function testPrefixIsNotSetIfAlreadySet()
 {
     $this->assertEquals('first_', $this->cookies->prefix('first_')->getPrefix());
     $this->assertEquals('first_', $this->cookies->configureFromUrl('https://activecollab.com/projects')->getPrefix());
 }