1 backdrop_web_test_case.php | protected BackdropWebTestCase::assertMailPattern($field_name, $regex, $message) |
Asserts that the most recently sent email 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
- core/
modules/ simpletest/ backdrop_web_test_case.php, line 3978
Class
- BackdropWebTestCase
- Test case for typical Backdrop tests.
Code
protected function assertMailPattern($field_name, $regex, $message) {
$mails = $this->backdropGetMails();
$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)));
}