protected function FieldUnitTestBase::assertNoRaw

Pass if the raw text IS NOT found in set string.

Parameters

$raw: Raw (HTML) string to look for.

$message: (optional) A message to display with the assertion. Do not translate messages: use format_string() to embed variables in the message text, not t(). If left blank, a default message will be displayed.

$group: (optional) The group this message is in, which is displayed in a column in test output. Use 'Debug' to indicate this is debugging output. Do not translate this string. Defaults to 'Other'; most tests do not override this default.

Return value

TRUE on pass, FALSE on fail.

1 call to FieldUnitTestBase::assertNoRaw()

File

drupal/core/modules/field/lib/Drupal/field/Tests/FieldUnitTestBase.php, line 172
Contains \Drupal\field\Tests\FieldUnitTestBase.

Class

FieldUnitTestBase
Parent class for Field API unit tests.

Namespace

Drupal\field\Tests

Code

protected function assertNoRaw($raw, $message = '', $group = 'Other') {
  if (!$message) {
    $message = t('Raw "@raw" found', array(
      '@raw' => $raw,
    ));
  }
  return $this
    ->assert(strpos($this->content, $raw) === FALSE, $message, $group);
}