You are here

protected function BcTimestampNormalizerUnixTest::getEntitiesDataArray in Entity Share 8.2

Helper function to get a mapping of the entities data.

Used to create the entities for the test and to test that it has been recreated properly.

Overrides EntityShareClientFunctionalTestBase::getEntitiesDataArray

File

modules/entity_share_client/tests/src/Functional/BcTimestampNormalizerUnixTest.php, line 50

Class

BcTimestampNormalizerUnixTest
Test class for changed behavior in core regarding timestamp normalization.

Namespace

Drupal\Tests\entity_share_client\Functional

Code

protected function getEntitiesDataArray() {
  return [
    'node' => [
      'en' => [
        // Default.
        'es_test' => $this
          ->getCompleteNodeInfos([
          'created' => [
            'value' => $this->faker
              ->unixTime(),
            'checker_callback' => 'getValue',
          ],
        ]),
      ],
    ],
  ];
}