function FormTest::setUp

Same name in this branch
  1. 8.9.x core/modules/system/tests/src/Functional/Form/FormTest.php \Drupal\Tests\system\Functional\Form\FormTest::setUp()
Same name and namespace in other branches
  1. 9 core/modules/field/tests/src/Functional/FormTest.php \Drupal\Tests\field\Functional\FormTest::setUp()
  2. 9 core/modules/system/tests/src/Functional/Form/FormTest.php \Drupal\Tests\system\Functional\Form\FormTest::setUp()
  3. 10 core/modules/field/tests/src/Functional/FormTest.php \Drupal\Tests\field\Functional\FormTest::setUp()
  4. 10 core/modules/system/tests/src/Functional/Form/FormTest.php \Drupal\Tests\system\Functional\Form\FormTest::setUp()
  5. 11.x core/modules/field/tests/src/Functional/FormTest.php \Drupal\Tests\field\Functional\FormTest::setUp()
  6. 11.x core/modules/system/tests/src/Functional/Form/FormTest.php \Drupal\Tests\system\Functional\Form\FormTest::setUp()

Overrides BrowserTestBase::setUp

File

core/modules/field/tests/src/Functional/FormTest.php, line 69

Class

FormTest
Tests field form handling.

Namespace

Drupal\Tests\field\Functional

Code

protected function setUp() {
    parent::setUp();
    $web_user = $this->drupalCreateUser([
        'view test entity',
        'administer entity_test content',
    ]);
    $this->drupalLogin($web_user);
    $this->fieldStorageSingle = [
        'field_name' => 'field_single',
        'entity_type' => 'entity_test',
        'type' => 'test_field',
    ];
    $this->fieldStorageMultiple = [
        'field_name' => 'field_multiple',
        'entity_type' => 'entity_test',
        'type' => 'test_field',
        'cardinality' => 4,
    ];
    $this->fieldStorageUnlimited = [
        'field_name' => 'field_unlimited',
        'entity_type' => 'entity_test',
        'type' => 'test_field',
        'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED,
    ];
    $this->field = [
        'entity_type' => 'entity_test',
        'bundle' => 'entity_test',
        'label' => $this->randomMachineName() . '_label',
        'description' => '[site:name]_description',
        'weight' => mt_rand(0, 127),
        'settings' => [
            'test_field_setting' => $this->randomMachineName(),
        ],
    ];
}

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