function TableSelectTest::testProcessTableselectWithStringTitle

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Render/Element/TableSelectTest.php \Drupal\Tests\Core\Render\Element\TableSelectTest::testProcessTableselectWithStringTitle()
  2. 8.9.x core/tests/Drupal/Tests/Core/Render/Element/TableSelectTest.php \Drupal\Tests\Core\Render\Element\TableSelectTest::testProcessTableselectWithStringTitle()
  3. 10 core/tests/Drupal/Tests/Core/Render/Element/TableSelectTest.php \Drupal\Tests\Core\Render\Element\TableSelectTest::testProcessTableselectWithStringTitle()

@covers ::processTableselect

File

core/tests/Drupal/Tests/Core/Render/Element/TableSelectTest.php, line 48

Class

TableSelectTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Render%21Element%21Tableselect.php/class/Tableselect/11.x" title="Provides a form element for a table with radios or checkboxes in left column." class="local">\Drupal\Core\Render\Element\Tableselect</a> @group Render

Namespace

Drupal\Tests\Core\Render\Element

Code

public function testProcessTableselectWithStringTitle() : void {
    $element = [];
    $form_state = new FormState();
    $complete_form = [];
    $element_object = new Tableselect([], 'table_select', []);
    $info = $element_object->getInfo();
    $element += $info;
    $element['#value'] = 0;
    $element['#options'][] = [
        'title' => [
            'data' => [
                '#title' => 'Static title',
            ],
        ],
    ];
    $element['#attributes'] = [];
    Tableselect::processTableselect($element, $form_state, $complete_form);
    $this->assertEquals(new TranslatableMarkup('Update @title', [
        '@title' => 'Static title',
    ]), $element[0]['#title']);
}

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