protected function RowEntityTest::assertText

Pass if the text is found in set string.

Parameters

string $text: Text to look for.

string $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.

string $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

bool TRUE on pass, FALSE on fail.

1 call to RowEntityTest::assertText()
RowEntityTest::testEntityRow in drupal/core/modules/views/lib/Drupal/views/Tests/Plugin/RowEntityTest.php
Tests the entity row handler.

File

drupal/core/modules/views/lib/Drupal/views/Tests/Plugin/RowEntityTest.php, line 91
Contains \Drupal\views\Tests\Plugin\RowEntityTest.

Class

RowEntityTest
Tests the generic entity row plugin.

Namespace

Drupal\views\Tests\Plugin

Code

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