function FieldUIManageDisplayTestCase::assertNodeViewText
Asserts that a string is found in the rendered node in a view mode.
Parameters
$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 FieldUIManageDisplayTestCase::assertNodeViewText()
- FieldUIManageDisplayTestCase::testViewModeCustom in modules/
field_ui/ field_ui.test - Tests switching view modes to use custom or 'default' settings'.
File
-
modules/
field_ui/ field_ui.test, line 620
Class
- FieldUIManageDisplayTestCase
- Tests the functionality of the 'Manage display' screens.
Code
function assertNodeViewText($node, $view_mode, $text, $message) {
return $this->assertNodeViewTextHelper($node, $view_mode, $text, $message, FALSE);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.