Tests the field_field handler.
@TODO
Check a entity-type with bundles
Check a entity-type without bundles
Check locale:disabled, locale:enabled and locale:enabled with another language
Check revisions
Code
publicfunction_testSimpleFieldRender() {
$view = $this->getFieldView();
$this->executeView($view);
// Tests that the rendered fields match the actual value of the fields.
for ($i = 0; $i < 3; $i++) {
for ($key = 0; $key < 2; $key++) {
$field = $this->fields[$key];
$rendered_field = $view->style_plugin->get_field($i, $field['field_name']);
$expected_field = $this->nodes[$i]->{$field['field_name']}[LANGUAGE_NONE][0]['value'];
$this->assertEqual($rendered_field, $expected_field);
}
}
}