1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| class MaClass {
function multiplie($a, $b) {
return $a*$b;
}
function estDansTableau($element, $tableau) {
return in_array($element, $tableau);
}
...
function test {
echo "*** TEST UNITAIRE ***<br>";
echo "multiplie : ".(($this->multiplie(3,5)===15)?'OK':'KO')."<br>";
echo "multiplie : ".(($this->multiplie(0,5)===0)?'OK':'KO')."<br>";
echo "multiplie : ".(($this->multiplie(-1,5)===-5)?'OK':'KO')."<br>";
echo "multiplie : ".(($this->multiplie(-2,-4)===8)?'OK':'KO')."<br>";
echo "estDansTableau : ".((!$this->estDansTableau(3,array(1,2,5)))?'OK':'KO')."<br>";
echo "estDansTableau : ".(($this->estDansTableau(3,array(1,3,2,5)))?'OK':'KO')."<br>";
...
}
} |
Partager