You are here

public function ElementTest::testChild in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::testChild()

Tests the child() method.

File

core/tests/Drupal/Tests/Core/Render/ElementTest.php, line 49
Contains \Drupal\Tests\Core\Render\ElementTest.

Class

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

Namespace

Drupal\Tests\Core\Render

Code

public function testChild() {
  $this
    ->assertFalse(Element::child('#property'));
  $this
    ->assertTrue(Element::child('property'));
  $this
    ->assertTrue(Element::child('property#'));
}