executerFormulaireNom();
$this->assertNotEmpty($sortie, print_r($sortie, true));
$this->assertContains('', $sortie, print_r($sortie,true));
$this->assertContains('', $sortie);
$this->assertContains('', $sortie);
$this->assertNotContains('', $sortie);
}
public function testMoteurRechercheSimpleForm() {
$cheminRacine = realpath(dirname(__FILE__).'/../configurations/').'/';
Config::charger($cheminRacine.'bdtfx.ini');
Registre::set('eFlore.urlBase', new Url(Config::get('base_url_application_index')));
Registre::set('parametres.referentiel', 'bdtfx');
$donnees['type_nom'] = 'nom_vernaculaire';
$donnees['nom'] = 'acer';
$donnees['nom_verna'] = 'true';
$recherche = new RechercheSimple();
$sortie = $recherche->executerFormulaireNom($donnees);
$this->assertNotEmpty($sortie, print_r($sortie, true));
$this->assertNotContains('', $sortie);
$this->assertContains('', $sortie);
$this->assertContains('', $sortie);
$this->assertContains('', $sortie);
$this->assertContains('', $sortie);
}
}
?>