/**
  * Test get site URL
  *
  * @dataProvider getPaths
  *
  * @param string $path
  * @param string $locale
  */
 public function testGetSiteUrl($path, $locale)
 {
     $this->client->setLocale($locale);
     $this->assertEquals($this->host . '/' . $locale . $path, $this->client->getSiteUrl($path));
 }