public function CategorizingPluginManagerTraitTest::testGetGroupedDefinitions in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Plugin/CategorizingPluginManagerTraitTest.php \Drupal\Tests\Core\Plugin\CategorizingPluginManagerTraitTest::testGetGroupedDefinitions()
- 9 core/tests/Drupal/Tests/Core/Plugin/CategorizingPluginManagerTraitTest.php \Drupal\Tests\Core\Plugin\CategorizingPluginManagerTraitTest::testGetGroupedDefinitions()
@covers ::getGroupedDefinitions
File
- core/
tests/ Drupal/ Tests/ Core/ Plugin/ CategorizingPluginManagerTraitTest.php, line 67 - Contains \Drupal\Tests\Core\Plugin\CategorizingPluginManagerTraitTest.
Class
- CategorizingPluginManagerTraitTest
- @coversDefaultClass \Drupal\Core\Plugin\CategorizingPluginManagerTrait @group Plugin
Namespace
Drupal\Tests\Core\PluginCode
public function testGetGroupedDefinitions() {
$grouped = $this->pluginManager
->getGroupedDefinitions();
$this
->assertSame([
'fruits',
'vegetables',
], array_keys($grouped));
$this
->assertSame([
'apple',
'mango',
], array_keys($grouped['fruits']));
$this
->assertSame([
'cucumber',
], array_keys($grouped['vegetables']));
}