PluginIdTest.php
Same filename in this branch
Same filename and directory in other branches
- 11.x core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php
- 11.x core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginIdTest.php
- 10 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php
- 10 core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginIdTest.php
- 9 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php
- 8.9.x core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php
Namespace
Drupal\Tests\Component\AnnotationFile
-
core/
tests/ Drupal/ Tests/ Component/ Annotation/ PluginIdTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\Component\Annotation;
use Drupal\Component\Annotation\PluginID;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\TestCase;
/**
* Tests Drupal\Component\Annotation\PluginID.
*/
class PluginIdTest extends TestCase {
/**
* Tests get.
*/
public function testGet() : void {
// 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());
}
/**
* Tests get id.
*/
public function testGetId() : void {
$plugin = new PluginID();
$plugin->value = 'example';
$this->assertEquals('example', $plugin->getId());
}
}
Classes
| Title | Deprecated | Summary |
|---|---|---|
| PluginIdTest | Tests Drupal\Component\Annotation\PluginID. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.