PluginTypeListTest.php

Same filename and directory in other branches
  1. 9 core/modules/views/tests/src/Unit/PluginTypeListTest.php
  2. 8.9.x core/modules/views/tests/src/Unit/PluginTypeListTest.php
  3. 10 core/modules/views/tests/src/Unit/PluginTypeListTest.php

Namespace

Drupal\Tests\views\Unit

File

core/modules/views/tests/src/Unit/PluginTypeListTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\views\Unit;

use Drupal\views\ViewExecutable;
use Drupal\Tests\UnitTestCase;

/**
 * Tests that list of plugin is correct.
 *
 * @group views
 */
class PluginTypeListTest extends UnitTestCase {
  
  /**
   * Tests the plugins list is correct.
   */
  public function testPluginList() : void {
    $plugin_list = [
      'access',
      'area',
      'argument',
      'argument_default',
      'argument_validator',
      'cache',
      'display_extender',
      'display',
      'exposed_form',
      'field',
      'filter',
      'join',
      'pager',
      'query',
      'relationship',
      'row',
      'sort',
      'style',
      'wizard',
    ];
    $diff = array_diff($plugin_list, ViewExecutable::getPluginTypes());
    $this->assertEmpty($diff);
  }

}

Classes

Title Deprecated Summary
PluginTypeListTest Tests that list of plugin is correct.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.