/**
  * Test description.
  *
  * @return void
  */
 public function testSetPortCorrect()
 {
     $expected = 5555;
     $this->assertSame($this->browser, $this->browser->setPort($expected));
     $this->assertSame($expected, $this->browser->getPort());
 }