You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
585 B
20 lines
585 B
<?php
|
|
require("../Website/class/Chapter.php") ;
|
|
print("<div align=\"center\"><font size=\"26\"><b>test chapter</b></font></div></br>") ;
|
|
$chapter = new Chapter(2, "Damien") ;
|
|
print("test getName.. ") ;
|
|
if($chapter->getName() == "Damien"){
|
|
print("<b><font color=\"green\">OK</font></b></br>") ;
|
|
}
|
|
else{
|
|
print("<b><font color=\"red\">ERREUR</font></b></br>") ;
|
|
}
|
|
print("test idEqual.. ") ;
|
|
if($chapter->idEqual(2) && !$chapter->idEqual(5)){
|
|
print("<b><font color=\"green\">OK</font></b></br>") ;
|
|
}
|
|
else{
|
|
print("<b><font color=\"red\">ERREUR</font></b></br>") ;
|
|
}
|
|
?>
|