function DrupalWebTestCase::assertMailPattern
Asserts that the most recently sent e-mail message has the pattern in it.
Parameters
$field_name: Name of field or message property to assert: subject, body, id, ...
$regex: Pattern to search for.
Return value
TRUE on pass, FALSE on fail.
File
-
modules/
simpletest/ drupal_web_test_case.php, line 4025
Class
- DrupalWebTestCase
- Test case for typical Drupal tests.
Code
protected function assertMailPattern($field_name, $regex, $message) {
$mails = $this->drupalGetMails();
$mail = end($mails);
$regex_found = preg_match("/{$regex}/", $mail[$field_name]);
return $this->assertTrue($regex_found, t('Expected text found in @field of email message: "@expected".', array(
'@field' => $field_name,
'@expected' => $regex,
)));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.