protected function FieldKernelTest::assertNotSubString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Tests/Handler/FieldKernelTest.php \Drupal\views\Tests\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\Utility\SafeMarkup::format() 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.
3 calls to FieldKernelTest::assertNotSubString()
- FieldKernelTest::testExclude in core/
modules/ views/ src/ Tests/ Handler/ FieldKernelTest.php - Tests the exclude setting.
- FieldKernelTest::testFieldTokens in core/
modules/ views/ src/ Tests/ Handler/ FieldKernelTest.php - Tests the field tokens, row level and field level.
- FieldKernelTest::testRewrite in core/
modules/ views/ src/ Tests/ Handler/ FieldKernelTest.php - Tests general rewriting of the output.
File
- core/
modules/ views/ src/ Tests/ Handler/ FieldKernelTest.php, line 145 - Contains \Drupal\views\Tests\Handler\FieldKernelTest.
Class
- FieldKernelTest
- Tests the generic field handler.
Namespace
Drupal\views\Tests\HandlerCode
protected function assertNotSubString($haystack, $needle, $message = '', $group = 'Other') {
return $this
->assertTrue(strpos($haystack, $needle) === FALSE, $message, $group);
}