You are here

protected function FieldKernelTest::assertSubString in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php \Drupal\Tests\views\Kernel\Handler\FieldKernelTest::assertSubString()
  2. 9 core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php \Drupal\Tests\views\Kernel\Handler\FieldKernelTest::assertSubString()

Asserts that a string is 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 110

Class

FieldKernelTest
Tests the generic field handler.

Namespace

Drupal\Tests\views\Kernel\Handler

Code

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