You are here

public function PluginTest::testGetProvider in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testGetProvider()
  2. 9 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testGetProvider()

@covers ::getProvider

File

core/tests/Drupal/Tests/Component/Annotation/PluginTest.php, line 54

Class

PluginTest
@coversDefaultClass \Drupal\Component\Annotation\Plugin @group Annotation

Namespace

Drupal\Tests\Component\Annotation

Code

public function testGetProvider() {
  $plugin = new Plugin([
    'provider' => 'example',
  ]);
  $this
    ->assertEquals('example', $plugin
    ->getProvider());
}