SAND-framework/tests/fichiertest.class.php
2019-12-05 18:29:10 +01:00

19 lines
No EOL
335 B
PHP
Executable file

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