function ManageDisplayTest::assertNodeViewText in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/field_ui/src/Tests/ManageDisplayTest.php \Drupal\field_ui\Tests\ManageDisplayTest::assertNodeViewText()
Asserts that a string is found in the rendered node in a view mode.
Parameters
EntityInterface $node: The node.
$view_mode: The view mode in which the node should be displayed.
$text: Plain text to look for.
$message: Message to display.
Return value
TRUE on pass, FALSE on fail.
1 call to ManageDisplayTest::assertNodeViewText()
- ManageDisplayTest::testViewModeCustom in core/
modules/ field_ui/ src/ Tests/ ManageDisplayTest.php - Tests switching view modes to use custom or 'default' settings'.
File
- core/
modules/ field_ui/ src/ Tests/ ManageDisplayTest.php, line 424 - Contains \Drupal\field_ui\Tests\ManageDisplayTest.
Class
- ManageDisplayTest
- Tests the Field UI "Manage display" and "Manage form display" screens.
Namespace
Drupal\field_ui\TestsCode
function assertNodeViewText(EntityInterface $node, $view_mode, $text, $message) {
return $this
->assertNodeViewTextHelper($node, $view_mode, $text, $message, FALSE);
}