function AttributeHelperTest::testAttributeExists
@covers ::attributeExists
@dataProvider providerTestAttributeExists
File
-
core/
tests/ Drupal/ Tests/ Core/ Template/ AttributeHelperTest.php, line 38
Class
- AttributeHelperTest
- @coversDefaultClass \Drupal\Core\Template\AttributeHelper[[api-linebreak]] @group Template
Namespace
Drupal\Tests\Core\TemplateCode
public function testAttributeExists(array $test_data, $test_attribute, $expected) : void {
$this->assertSame($expected, AttributeHelper::attributeExists($test_attribute, $test_data));
$attributes = new Attribute($test_data);
$this->assertSame($expected, AttributeHelper::attributeExists($test_attribute, $attributes));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.