class PluginIdTest in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php \Drupal\Tests\Component\Annotation\PluginIdTest
@coversDefaultClass \Drupal\Component\Annotation\PluginId @group Annotation
Hierarchy
- class \Drupal\Tests\Component\Annotation\PluginIdTest extends \PHPUnit\Framework\TestCase
Expanded class hierarchy of PluginIdTest
File
- core/
tests/ Drupal/ Tests/ Component/ Annotation/ PluginIdTest.php, line 12
Namespace
Drupal\Tests\Component\AnnotationView source
class PluginIdTest extends TestCase {
/**
* @covers ::get
*/
public function testGet() {
// Assert plugin starts empty.
$plugin = new PluginID();
$this
->assertEquals([
'id' => NULL,
'class' => NULL,
'provider' => NULL,
], $plugin
->get());
// Set values and ensure we can retrieve them.
$plugin->value = 'foo';
$plugin
->setClass('bar');
$plugin
->setProvider('baz');
$this
->assertEquals([
'id' => 'foo',
'class' => 'bar',
'provider' => 'baz',
], $plugin
->get());
}
/**
* @covers ::getId
*/
public function testGetId() {
$plugin = new PluginID();
$plugin->value = 'example';
$this
->assertEquals('example', $plugin
->getId());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PluginIdTest:: |
public | function | @covers ::get | |
PluginIdTest:: |
public | function | @covers ::getId |