You are here

public function AttributesTest::testDrupalAttributes in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Common/AttributesTest.php \Drupal\Tests\Core\Common\AttributesTest::testDrupalAttributes()
  2. 10 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 55

Class

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

Namespace

Drupal\Tests\Core\Common

Code

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