protected function FieldKernelTest::assertNotSubString in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php \Drupal\Tests\views\Kernel\Handler\FieldKernelTest::assertNotSubString()
- 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.
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.
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 135
Class
- FieldKernelTest
- Tests the generic field handler.
Namespace
Drupal\Tests\views\Kernel\HandlerCode
protected function assertNotSubString($haystack, $needle, $message = '', $group = 'Other') {
$this
->assertStringNotContainsString($needle, $haystack, $message);
}