function FormElementsRenderTest::assertRenderedElement

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Kernel/Common/FormElementsRenderTest.php \Drupal\Tests\system\Kernel\Common\FormElementsRenderTest::assertRenderedElement()
  2. 8.9.x core/modules/system/tests/src/Kernel/Common/FormElementsRenderTest.php \Drupal\Tests\system\Kernel\Common\FormElementsRenderTest::assertRenderedElement()
  3. 11.x core/modules/system/tests/src/Kernel/Common/FormElementsRenderTest.php \Drupal\Tests\system\Kernel\Common\FormElementsRenderTest::assertRenderedElement()

Tests that elements are rendered properly.

@internal

1 call to FormElementsRenderTest::assertRenderedElement()
FormElementsRenderTest::testDrupalRenderFormElements in core/modules/system/tests/src/Kernel/Common/FormElementsRenderTest.php
Tests rendering form elements without using doBuildForm().

File

core/modules/system/tests/src/Kernel/Common/FormElementsRenderTest.php, line 146

Class

FormElementsRenderTest
Performs integration tests on <a href="/api/drupal/core%21lib%21Drupal.php/function/Drupal%3A%3Aservice/10" title="Retrieves a service from the container." class="local">\Drupal::service</a>(&#039;renderer&#039;)-&gt;render().

Namespace

Drupal\Tests\system\Kernel\Common

Code

protected function assertRenderedElement(array $element, string $xpath, array $xpath_args = []) : void {
    $this->render($element);
    $xpath = $this->buildXPathQuery($xpath, $xpath_args);
    $element += [
        '#value' => NULL,
    ];
    $this->assertFieldByXPath($xpath, $element['#value'], new FormattableMarkup('#type @type was properly rendered.', [
        '@type' => var_export($element['#type'], TRUE),
    ]));
}

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