?> <h2>It should create a valid Grades object when all input is provided</h2> <?php $validTest = array('listFile' => 'c:\\xampp\\htdocs\\classList.csv'); $s1 = new Grades($validTest); echo "The object is: {$s1}<br>"; $test1 = is_object($s1) ? '' : 'Failed:It should create a valid object when valid input is provided<br>'; echo $test1; $test2 = empty($s1->getErrors()) ? '' : 'Failed:It not have errors when valid input is provided<br>'; echo $test2; ?> <h2>It should extract the parameters that went in</h2> <?php $props = $s1->getParameters(); print_r($props); ?> <h2>It should have an error when the class list file doesn't exist</h2> <?php $invalidTest = array('listFile' => 'c:\\xampp\\htdocs\\classListNone.csv'); $s1 = new Grades($invalidTest); $test2 = empty($s1->getErrors()) ? '' : 'Failed:It should have errors when invalid input is provided<br>'; echo $test2; echo "The error for listFile is: " . $s1->getError('listFile') . "<br>"; echo "The object is: {$s1}<br>"; ?> </body> </html>