protected function FieldKernelTest::assertNotSubString in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php \Drupal\Tests\views\Kernel\Handler\FieldKernelTest::assertNotSubString()
- 9 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 \Drupal\Component\Render\FormattableMarkup to embed variables in the message text, not t(). If left blank, a default message will be displayed.
File
- core/
modules/ views/ tests/ src/ Kernel/ Handler/ FieldKernelTest.php, line 129
Class
- FieldKernelTest
- Tests the generic field handler.
Namespace
Drupal\Tests\views\Kernel\HandlerCode
protected function assertNotSubString(string $haystack, string $needle, string $message = '') : void {
$this
->assertStringNotContainsString($needle, $haystack, $message);
}