function PluginTest::testSetClass

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

@legacy-covers ::setClass

File

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

Class

PluginTest
Tests Drupal\Component\Annotation\Plugin.

Namespace

Drupal\Tests\Component\Annotation

Code

public function testSetClass() : void {
  $plugin = new Plugin([]);
  $plugin->setClass('example');
  $this->assertEquals('example', $plugin->getClass());
}

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