You are here

protected function FieldKernelTest::assertSubString in Drupal 8

Same name and namespace in other branches
  1. 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.

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.

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 if the assertion succeeded, FALSE otherwise.

5 calls to FieldKernelTest::assertSubString()
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.
FieldKernelTest::testRewriteHtmlWithTokens in core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php
Tests rewriting of the output with HTML.
FieldKernelTest::testRewriteHtmlWithTokensAndAggregation in core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php
Tests rewriting of the output with HTML and aggregation.

File

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

Class

FieldKernelTest
Tests the generic field handler.

Namespace

Drupal\Tests\views\Kernel\Handler

Code

protected function assertSubString($haystack, $needle, $message = '', $group = 'Other') {
  return $this
    ->assertStringContainsString($needle, $haystack, $message);
}