function AttributeBaseTest::testSetClass

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Component/Plugin/Attribute/AttributeBaseTest.php \Drupal\Tests\Component\Plugin\Attribute\AttributeBaseTest::testSetClass()
  2. 10 core/tests/Drupal/Tests/Component/Plugin/Attribute/AttributeBaseTest.php \Drupal\Tests\Component\Plugin\Attribute\AttributeBaseTest::testSetClass()

@legacy-covers ::getClass @legacy-covers ::setClass

File

core/tests/Drupal/Tests/Component/Plugin/Attribute/AttributeBaseTest.php, line 41

Class

AttributeBaseTest
Tests Drupal\Component\Plugin\Attribute\AttributeBase.

Namespace

Drupal\Tests\Component\Plugin\Attribute

Code

public function testSetClass() : void {
  $plugin = new AttributeBaseStub(id: '1');
  $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.