function FormElementsRenderTest::assertRenderedElement

Tests that elements are rendered properly.

1 call to FormElementsRenderTest::assertRenderedElement()
FormElementsRenderTest::testDrupalRenderFormElements in core/modules/system/tests/src/Kernel/Common/FormElementsRenderTest.php
Tests rendering form elements without passing through \Drupal::formBuilder()->doBuildForm().

File

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

Class

FormElementsRenderTest
Performs integration tests on drupal_render().

Namespace

Drupal\Tests\system\Kernel\Common

Code

protected function assertRenderedElement(array $element, $xpath, array $xpath_args = []) {
  $this->render($element);
  // @see \Drupal\simpletest\WebTestBase::xpath()
  $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.