protected function WebTestBase::assertNoRaw

Pass if the raw text is NOT found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated.

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.

58 calls to WebTestBase::assertNoRaw()
ArgumentDefaultTest::testArgumentDefaultNoOptions in drupal/core/modules/views/lib/Drupal/views/Tests/Plugin/ArgumentDefaultTest.php
Tests the use of a default argument plugin that provides no options.
BlockInvalidRegionTest::testBlockInInvalidRegion in drupal/core/modules/block/lib/Drupal/block/Tests/BlockInvalidRegionTest.php
Tests that blocks assigned to invalid regions work correctly.
BlockTest::testBlockVisibility in drupal/core/modules/block/lib/Drupal/block/Tests/BlockTest.php
Test block visibility.
BrokenSetUpTest::testBreakSetUp in drupal/core/modules/simpletest/lib/Drupal/simpletest/Tests/BrokenSetUpTest.php
Runs this test case from within the simpletest child site.
CommentAnonymousTest::testAnonymous in drupal/core/modules/comment/lib/Drupal/comment/Tests/CommentAnonymousTest.php
Tests anonymous comment functionality.

... See full list

File

drupal/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php, line 2156
Definition of Drupal\simpletest\WebTestBase.

Class

WebTestBase
Test case for typical Drupal tests.

Namespace

Drupal\simpletest

Code

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