/**
  * Test description.
  *
  * @param string $expected Expected strategy.
  *
  * @return void
  * @dataProvider sessionSharingDataProvider
  */
 public function testSetSessionStrategy($expected)
 {
     $this->assertSame($this->browser, $this->browser->setSessionStrategy($expected));
     $this->assertSame($expected, $this->browser->getSessionStrategy());
 }