Rev 266 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
require_once dirname(__FILE__).'/../../ConsultationEflorePhpUnit.php';
class FicheMetadonneesTest extends ConsultationEflorePhpUnit {
public function testAffichageFicheMetadonnees() {
$_GET['module'] = 'fiche-metadonnees';
$_GET['action'] = 'affichagemetadonnees';
$_GET['projet'] = 'chorodep';
Registre::set('niveau', '1');
$cheminRacine = realpath(dirname(__FILE__).'/../configurations/').'/';
$fiche = new FicheMetadonnees();
$sortie = $fiche->chargerMetadonneesHtml();
$this->assertNotEmpty($sortie, print_r($sortie));
$this->assertContains('<div id="metadonnees">', $sortie);
}
}
?>