public function AttributeTest::testAdd in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Template/AttributeTest.php \Drupal\Tests\Core\Template\AttributeTest::testAdd()
Tests adding new values to an existing part of the attribute.
File
- core/
tests/ Drupal/ Tests/ Core/ Template/ AttributeTest.php, line 64 - Contains \Drupal\Tests\Core\Template\AttributeTest.
Class
- AttributeTest
- @coversDefaultClass \Drupal\Core\Template\Attribute @group Template
Namespace
Drupal\Tests\Core\TemplateCode
public function testAdd() {
$attribute = new Attribute(array(
'class' => array(
'example-class',
),
));
$attribute['class'][] = 'other-class';
$this
->assertEquals(new AttributeArray('class', array(
'example-class',
'other-class',
)), $attribute['class']);
}