/**
  * Test description.
  *
  * @return void
  */
 public function testSetTimeoutCorrect()
 {
     $expected = 1000;
     $this->assertSame($this->browser, $this->browser->setTimeout($expected));
     $this->assertSame($expected, $this->browser->getTimeout());
 }