function ElementsTableSelectTest::testMultipleFalse

Test the display of radios when #multiple is FALSE.

File

drupal/core/modules/system/lib/Drupal/system/Tests/Form/ElementsTableSelectTest.php, line 53
Definition of Drupal\system\Tests\Form\ElementsTableSelectTest.

Class

ElementsTableSelectTest
Test the tableselect form element for expected behavior.

Namespace

Drupal\system\Tests\Form

Code

function testMultipleFalse() {
  $this
    ->drupalGet('form_test/tableselect/multiple-false');
  $this
    ->assertNoText(t('Empty text.'), 'Empty text should not be displayed.');

  // Test for the absence of the Select all rows tableheader.
  $this
    ->assertNoFieldByXPath('//th[@class="select-all"]', '', 'Absence of the "Select all" checkbox.');
  $rows = array(
    'row1',
    'row2',
    'row3',
  );
  foreach ($rows as $row) {
    $this
      ->assertFieldByXPath('//input[@type="radio"]', $row, format_string('Radio button for value @row.', array(
      '@row' => $row,
    )));
  }
}