function YamlDiscoveryTest::testGetDefinition
Tests the getDefinition() method.
File
-
core/
tests/ Drupal/ Tests/ Core/ Plugin/ Discovery/ YamlDiscoveryTest.php, line 116
Class
- YamlDiscoveryTest
- @coversDefaultClass \Drupal\Core\Plugin\Discovery\YamlDiscovery[[api-linebreak]] @group Plugin
Namespace
Drupal\Tests\Core\Plugin\DiscoveryCode
public function testGetDefinition() : void {
$definitions = $this->discovery
->getDefinitions();
// Test the getDefinition() method.
foreach ($this->expectedKeys as $expected_key) {
$this->assertEquals($definitions[$expected_key], $this->discovery
->getDefinition($expected_key));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.