/**
  * @covers a
  */
 function test__StudentControllerfindStudentAccount()
 {
     $result = "<form action='' method='post' style='height: 240px; width: 269px'><b><h4>Account:</h4></b><h4>" . $studentArray['email'] . " </h4><br /><b><h4>Secret Question:</h4></b>" . $studentArray['secQuestion'] . "<br /><br /><input type = 'Text' name = 'textbox_secretAns' required placeholder='cats'><br /><br />Please Enter a new password for your account<br /><input type = 'password' name = 'textbox_newPass' required pattern='.{8,}' placeholder='abcd1234'><br /><br /><input type = 'submit' value = 'Reset password' class='btn btn-primary'  /><br /><br /><h5>Please Enter your secret answer to reset your password</h5><br /><br /><br /></form>";
     $a = new StudentController();
     return $this->assertEquals($a->createForgotPage('*****@*****.**'), $result);
 }