/**
  * testSetHostWithPort
  *
  * @return void
  */
 public function testSetHostWithPort()
 {
     TestCakeSession::init();
     TestCakeSession::setHost('cakephp.org:443');
     $this->assertEquals('cakephp.org', TestCakeSession::$host);
 }