function TableSelectTest::testProcessTableselectWithLinkTitle

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

@covers ::processTableselect

File

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

Class

TableSelectTest
@coversDefaultClass \Drupal\Core\Render\Element\Tableselect[[api-linebreak]] @group Render

Namespace

Drupal\Tests\Core\Render\Element

Code

public function testProcessTableselectWithLinkTitle() : 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' => new Link('my-text', Url::fromRoute('<front>')),
  ];
  $element['#attributes'] = [];
  Tableselect::processTableselect($element, $form_state, $complete_form);
  $this->assertEquals('', $element[0]['#title']);
}

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