示例#1
0
 /**
  * Test that email_exists() returns false for incorrect emails
  */
 public function testEmailExistsNegative()
 {
     $ALERT = new ALERT();
     $response = $ALERT->email_exists('*****@*****.**');
     $this->assertEquals(false, $response);
 }