public function FieldUITest::testFieldLabel in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/views_ui/src/Tests/FieldUITest.php \Drupal\views_ui\Tests\FieldUITest::testFieldLabel()
Tests the field labels.
File
- core/
modules/ views_ui/ src/ Tests/ FieldUITest.php, line 68 - Contains \Drupal\views_ui\Tests\FieldUITest.
Class
- FieldUITest
- Tests the UI of field handlers.
Namespace
Drupal\views_ui\TestsCode
public function testFieldLabel() {
// Create a view with unformatted style and make sure the fields have no
// labels by default.
$view = array();
$view['label'] = $this
->randomMachineName(16);
$view['id'] = strtolower($this
->randomMachineName(16));
$view['description'] = $this
->randomMachineName(16);
$view['show[wizard_key]'] = 'node';
$view['page[create]'] = TRUE;
$view['page[style][style_plugin]'] = 'default';
$view['page[title]'] = $this
->randomMachineName(16);
$view['page[path]'] = $view['id'];
$this
->drupalPostForm('admin/structure/views/add', $view, t('Save and edit'));
$view = Views::getView($view['id']);
$view
->initHandlers();
$this
->assertEqual($view->field['title']->options['label'], '', 'The field label for normal styles are empty.');
}