function EntityDefinitionUpdateTest::initialValueFromFieldTestCases

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php \Drupal\KernelTests\Core\Entity\EntityDefinitionUpdateTest::initialValueFromFieldTestCases()

Test cases for ::testInitialValueFromField.

File

core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php, line 1298

Class

EntityDefinitionUpdateTest
Tests EntityDefinitionUpdateManager functionality.

Namespace

Drupal\KernelTests\Core\Entity

Code

public function initialValueFromFieldTestCases() {
  return [
    'literal value' => [
      'test initial value',
      'test initial value',
    ],
    'indexed array' => [
      [
        'value' => 'test initial value',
      ],
      'test initial value',
    ],
    'empty array' => [
      [],
      NULL,
    ],
    'null' => [
      NULL,
      NULL,
    ],
  ];
}

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