ElementsContainerTest.php

Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php
  2. 10 core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php
  3. 11.x core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php

Namespace

Drupal\Tests\system\Functional\Form

File

core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php

View source
<?php

namespace Drupal\Tests\system\Functional\Form;

use Drupal\Tests\BrowserTestBase;

/**
 * Tests the container form element for expected behavior.
 *
 * @group Form
 */
class ElementsContainerTest extends BrowserTestBase {
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'form_test',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * Tests the #optional container property.
     */
    public function testOptionalContainerElements() {
        $this->drupalGet('form-test/optional-container');
        $assertSession = $this->assertSession();
        $assertSession->elementNotExists('css', 'div.empty_optional');
        $assertSession->elementExists('css', 'div.empty_nonoptional');
        $assertSession->elementExists('css', 'div.nonempty_optional');
        $assertSession->elementExists('css', 'div.nonempty_nonoptional');
    }

}

Classes

Title Deprecated Summary
ElementsContainerTest Tests the container form element for expected behavior.

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