function ElementTest::testIgnoredChildren

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::testIgnoredChildren()
  2. 10 core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::testIgnoredChildren()
  3. 9 core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::testIgnoredChildren()
  4. 8.9.x core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::testIgnoredChildren()

Tests the children() method with an ignored key/value pair.

File

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

Class

ElementTest
Tests Drupal\Core\Render\Element.

Namespace

Drupal\Tests\Core\Render

Code

public function testIgnoredChildren() : void {
  $element = [
    'foo' => NULL,
  ];
  $this->assertSame([], Element::children($element));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.