function 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\EntityCode
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.
