function FormTest::testEmptySelect

Tests a select element when #options is not set.

File

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

Class

FormTest

Namespace

Drupal\system\Tests\Form

Code

function testEmptySelect() {
  $this
    ->drupalGet('form-test/empty-select');
  $this
    ->assertFieldByXPath("//select[1]", NULL, 'Select element found.');
  $this
    ->assertNoFieldByXPath("//select[1]/option", NULL, 'No option element found.');
}