You are here

protected function FormTest::setUp in Drupal 8

Same name in this branch
  1. 8 core/modules/field/tests/src/Functional/FormTest.php \Drupal\Tests\field\Functional\FormTest::setUp()
  2. 8 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()

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(),
    ],
  ];
}