protected function FieldWebTest::assertNotSubString

Assertion helper which checks whether a string is not part of another string.

Parameters

string $haystack: The value to search in.

string $needle: The value to search for.

string $message: The message to display along with the assertion.

string $group: The type of assertion - examples are "Browser", "PHP".

Return value

bool TRUE if the assertion succeeded, FALSE otherwise.

2 calls to FieldWebTest::assertNotSubString()
FieldWebTest::testAlterUrl in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/FieldWebTest.php
Tests rewriting the output to a link.
FieldWebTest::testTextRendering in drupal/core/modules/views/lib/Drupal/views/Tests/Handler/FieldWebTest.php
Tests trimming/read-more/ellipses.

File

drupal/core/modules/views/lib/Drupal/views/Tests/Handler/FieldWebTest.php, line 122
Contains \Drupal\views\Tests\Handler\FieldWebTest.

Class

FieldWebTest
Tests fields from within a UI.

Namespace

Drupal\views\Tests\Handler

Code

protected function assertNotSubString($haystack, $needle, $message = '', $group = 'Other') {
  return $this
    ->assertTrue(strpos($haystack, $needle) === FALSE, $message, $group);
}