266 |
aurelien |
1 |
<?php
|
|
|
2 |
require_once dirname(__FILE__).'/../../ConsultationEflorePhpUnit.php';
|
|
|
3 |
|
|
|
4 |
class FicheMetadonneesTest extends ConsultationEflorePhpUnit {
|
|
|
5 |
|
|
|
6 |
public function testAffichageFicheMetadonnees() {
|
|
|
7 |
$_GET['module'] = 'fiche-metadonnees';
|
|
|
8 |
$_GET['action'] = 'affichagemetadonnees';
|
|
|
9 |
$_GET['projet'] = 'chorodep';
|
|
|
10 |
|
|
|
11 |
Registre::set('niveau', '1');
|
|
|
12 |
$cheminRacine = realpath(dirname(__FILE__).'/../configurations/').'/';
|
|
|
13 |
|
|
|
14 |
$fiche = new FicheMetadonnees();
|
|
|
15 |
$sortie = $fiche->chargerMetadonneesHtml();
|
|
|
16 |
|
|
|
17 |
$this->assertNotEmpty($sortie, print_r($sortie));
|
|
|
18 |
$this->assertContains('<div id="metadonnees">', $sortie);
|
|
|
19 |
}
|
|
|
20 |
}
|
|
|
21 |
?>
|