You are here

function AttributesTest::testDrupalAttributes in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Common/AttributesTest.php \Drupal\Tests\Core\Common\AttributesTest::testDrupalAttributes()

Tests casting an Attribute object to a string.

@dataProvider providerTestAttributeData

See also

\Drupal\Core\Template\Attribute::__toString()

File

core/tests/Drupal/Tests/Core/Common/AttributesTest.php, line 60
Contains \Drupal\Tests\Core\Common\AttributesTest.

Class

AttributesTest
Tests the Drupal\Core\Template\Attribute functionality.

Namespace

Drupal\Tests\Core\Common

Code

function testDrupalAttributes($attributes, $expected, $message) {
  $this
    ->assertSame($expected, (string) new Attribute($attributes), $message);
}