Vous êtes connecté en tant que anonymous Se Deconnecter
tests/fichiertest.class.php
137b5e76
 <?php
 
 include_once '../public/scriptPHP/objets/fichier.class.php';
 include_once '../public/scriptPHP/cookies.php';
 
 class FichierTest extends PHPUnit_Framework_TestCase
 {
 
 	protected $essai;
 	
 	function testFichier(){
 			$essai = ajouterZero(1);
 			$this->assertEquals('10', $essai);
 			$this->assertNotEquals(10, $essai); 
 	}
 	
 }
 
 ?>