/**
  * Test description.
  *
  * @return void
  */
 public function testSetBrowserNameCorrect()
 {
     $expected = 'firefox';
     $this->assertSame($this->browser, $this->browser->setBrowserName($expected));
     $this->assertSame($expected, $this->browser->getBrowserName());
 }