public function testEngineName()
 {
     $this->assertEquals('Google Search Engine France', $this->engine->getName());
     $newEngine = new GoogleFranceEngine($this->scrapper, $this->crawler, 'Moteur de recherche Google France');
     $this->assertEquals('Moteur de recherche Google France', $newEngine->getName());
 }