You are here

public function ElementTest::testProperties in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::testProperties()
  2. 9 core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::testProperties()

Tests the properties() method.

File

core/tests/Drupal/Tests/Core/Render/ElementTest.php, line 28

Class

ElementTest
@coversDefaultClass \Drupal\Core\Render\Element @group Render

Namespace

Drupal\Tests\Core\Render

Code

public function testProperties() {
  $element = [
    '#property1' => 'property1',
    '#property2' => 'property2',
    'property3' => 'property3',
    0 => [],
  ];
  $properties = Element::properties($element);
  $this
    ->assertSame([
    '#property1',
    '#property2',
  ], $properties);
}