function FieldKernelTest::assertNotSubString

Same name in other branches
  1. 9 core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php \Drupal\Tests\views\Kernel\Handler\FieldKernelTest::assertNotSubString()
  2. 8.9.x core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php \Drupal\Tests\views\Kernel\Handler\FieldKernelTest::assertNotSubString()
  3. 10 core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php \Drupal\Tests\views\Kernel\Handler\FieldKernelTest::assertNotSubString()

Asserts that a string is not part of another string.

@internal

Parameters

string $haystack: The value to search in.

string $needle: The value to search for.

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

3 calls to FieldKernelTest::assertNotSubString()
FieldKernelTest::testExclude in core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php
Tests the exclude setting.
FieldKernelTest::testFieldTokens in core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php
Tests the field tokens, row level and field level.
FieldKernelTest::testRewrite in core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php
Tests general rewriting of the output.

File

core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php, line 128

Class

FieldKernelTest
Tests the generic field handler.

Namespace

Drupal\Tests\views\Kernel\Handler

Code

protected function assertNotSubString(string $haystack, string $needle, string $message = '') : void {
    $this->assertStringNotContainsString($needle, $haystack, $message);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.