SAND-framework/tests/fichiertest.class.php
Emmanuel ROY 21ec903fa9 Ajout et tests des modules Wordpress et Prestashop
Installation finalisée pour wordpress
Installation en erreur pour Prestashop
2019-12-06 17:35:12 +01:00

19 lines
No EOL
335 B
PHP

<?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);
}
}
?>