function AttributeBaseTest::testSetClass

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

@covers ::getClass @covers ::setClass

File

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

Class

AttributeBaseTest
@coversDefaultClass \Drupal\Component\Plugin\Attribute\AttributeBase @group Attribute

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.