public function PluginTest::testSetProvider in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testSetProvider()
@covers ::setProvider
File
- core/
tests/ Drupal/ Tests/ Component/ Annotation/ PluginTest.php, line 62
Class
- PluginTest
- @coversDefaultClass \Drupal\Component\Annotation\Plugin @group Annotation
Namespace
Drupal\Tests\Component\AnnotationCode
public function testSetProvider() {
$plugin = new Plugin([]);
$plugin
->setProvider('example');
$this
->assertEquals('example', $plugin
->getProvider());
}