protected function DrupalWebTestCase::assertMailPattern

7.x drupal_web_test_case.php protected DrupalWebTestCase::assertMailPattern($field_name, $regex, $message)

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

drupal-7.x/modules/simpletest/drupal_web_test_case.php, line 3638

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)));
}