function PluginTest::testSetProvider

Same name in this branch
  1. 11.x core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testSetProvider()
Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testSetProvider()
  2. 8.9.x core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testSetProvider()
  3. 10 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testSetProvider()
  4. 10 core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginTest::testSetProvider()

@covers ::setProvider @covers ::getProvider

File

core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginTest.php, line 34

Class

PluginTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Component%21Plugin%21Attribute%21Plugin.php/class/Plugin/11.x" title="Defines a Plugin attribute object." class="local">\Drupal\Component\Plugin\Attribute\Plugin</a> @group Attribute

Namespace

Drupal\Tests\Component\Plugin\Attribute

Code

public function testSetProvider() : void {
    $plugin = new Plugin(id: 'example');
    $plugin->setProvider('example');
    $this->assertEquals('example', $plugin->getProvider());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.