PluginTypeListTest.php

Same filename and directory in other branches
  1. 8.9.x core/modules/views/tests/src/Unit/PluginTypeListTest.php
  2. 10 core/modules/views/tests/src/Unit/PluginTypeListTest.php
  3. 11.x 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

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() {
        $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.