PluginTypeListTest.php
Same filename in other branches
Namespace
Drupal\Tests\views\UnitFile
-
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.