class PluginIdTest
@coversDefaultClass \Drupal\Component\Plugin\Attribute\PluginId
      
    
@group Attribute
Hierarchy
- class \Drupal\Tests\Component\Plugin\Attribute\PluginIdTest extends \PHPUnit\Framework\TestCase
 
Expanded class hierarchy of PluginIdTest
File
- 
              core/
tests/ Drupal/ Tests/ Component/ Plugin/ Attribute/ PluginIdTest.php, line 14  
Namespace
Drupal\Tests\Component\Plugin\AttributeView source
class PluginIdTest extends TestCase {
  
  /**
   * @covers ::get
   */
  public function testGet() : void {
    // Assert plugin starts with only an ID.
    $plugin = new PluginID(id: 'test');
    // Plugin's always have a class set by discovery.
    $plugin->setClass('bar');
    $this->assertEquals([
      'id' => 'test',
      'class' => 'bar',
      'provider' => NULL,
    ], $plugin->get());
    // Set values and ensure we can retrieve them.
    $plugin->setClass('bar2');
    $plugin->setProvider('baz');
    $this->assertEquals([
      'id' => 'test',
      'class' => 'bar2',
      'provider' => 'baz',
    ], $plugin->get());
  }
}
Members
| Title Sort descending | Modifiers | Object type | Summary | 
|---|---|---|---|
| PluginIdTest::testGet | public | function | @covers ::get[[api-linebreak]] | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.