PluginIdTest.php in Drupal 9
File
core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php
View source
<?php
namespace Drupal\Tests\Component\Annotation;
use Drupal\Component\Annotation\PluginID;
use PHPUnit\Framework\TestCase;
class PluginIdTest extends TestCase {
public function testGet() {
$plugin = new PluginID();
$this
->assertEquals([
'id' => NULL,
'class' => NULL,
'provider' => NULL,
], $plugin
->get());
$plugin->value = 'foo';
$plugin
->setClass('bar');
$plugin
->setProvider('baz');
$this
->assertEquals([
'id' => 'foo',
'class' => 'bar',
'provider' => 'baz',
], $plugin
->get());
}
public function testGetId() {
$plugin = new PluginID();
$plugin->value = 'example';
$this
->assertEquals('example', $plugin
->getId());
}
}
Classes
Name |
Description |
PluginIdTest |
@coversDefaultClass \Drupal\Component\Annotation\PluginId
@group Annotation |