public function UITestBase::randomView in Drupal 8
Same name in this branch
- 8 core/modules/views_ui/src/Tests/UITestBase.php \Drupal\views_ui\Tests\UITestBase::randomView()
- 8 core/modules/views_ui/tests/src/Functional/UITestBase.php \Drupal\Tests\views_ui\Functional\UITestBase::randomView()
A helper method which creates a random view.
File
- core/modules/ views_ui/ src/ Tests/ UITestBase.php, line 65 
Class
- UITestBase
- Provides a base class for testing the Views UI.
Namespace
Drupal\views_ui\TestsCode
public function randomView(array $view = []) {
  // Create a new view in the UI.
  $default = [];
  $default['label'] = $this
    ->randomMachineName(16);
  $default['id'] = strtolower($this
    ->randomMachineName(16));
  $default['description'] = $this
    ->randomMachineName(16);
  $default['page[create]'] = TRUE;
  $default['page[path]'] = $default['id'];
  $view += $default;
  $this
    ->drupalPostForm('admin/structure/views/add', $view, t('Save and edit'));
  return $default;
}