You are here

protected property ConfigUpdateUnitTestBase::$entityDefinitionInformation in Configuration Update Manager 8

The mocked entity definition information.

They are not sorted, to test that the methods sort them. Also there are a couple with prefixes that are subsets of each other.

Type: string[]

See also

ConfigUpdateUnitTestBase::getEntityManagerMock().

File

tests/src/Unit/ConfigUpdateUnitTestBase.php, line 26

Class

ConfigUpdateUnitTestBase
Base class for unit testing in Config Update Manager.

Namespace

Drupal\Tests\config_update\Unit

Code

protected $entityDefinitionInformation = [
  [
    'prefix' => 'foo.bar',
    'type' => 'foo',
  ],
  [
    'prefix' => 'foo.barbaz',
    'type' => 'bar',
  ],
  [
    'prefix' => 'baz.foo',
    'type' => 'baz',
  ],
];