You are here

protected function ContentTranslationUITestBase::getNewEntityValues in Drupal 8

Same name in this branch
  1. 8 core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php \Drupal\content_translation\Tests\ContentTranslationUITestBase::getNewEntityValues()
  2. 8 core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase::getNewEntityValues()
Same name and namespace in other branches
  1. 9 core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase::getNewEntityValues()
  2. 10 core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase::getNewEntityValues()

Returns an array of entity field values to be tested.

8 calls to ContentTranslationUITestBase::getNewEntityValues()
BlockContentTranslationUITest::getNewEntityValues in core/modules/block_content/tests/src/Functional/BlockContentTranslationUITest.php
Returns an array of entity field values to be tested.
CommentTranslationUITest::getNewEntityValues in core/modules/comment/tests/src/Functional/CommentTranslationUITest.php
Returns an array of entity field values to be tested.
ContentTranslationUITestBase::doTestBasicTranslation in core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php
Tests the basic translation workflow.
MediaTranslationUITest::getNewEntityValues in core/modules/media/tests/src/Functional/MediaTranslationUITest.php
Returns an array of entity field values to be tested.
NodeTranslationUITest::getNewEntityValues in core/modules/node/tests/src/Functional/NodeTranslationUITest.php
Returns an array of entity field values to be tested.

... See full list

7 methods override ContentTranslationUITestBase::getNewEntityValues()
BlockContentTranslationUITest::getNewEntityValues in core/modules/block_content/tests/src/Functional/BlockContentTranslationUITest.php
Returns an array of entity field values to be tested.
CommentTranslationUITest::getNewEntityValues in core/modules/comment/tests/src/Functional/CommentTranslationUITest.php
Returns an array of entity field values to be tested.
MediaTranslationUITest::getNewEntityValues in core/modules/media/tests/src/Functional/MediaTranslationUITest.php
Returns an array of entity field values to be tested.
NodeTranslationUITest::getNewEntityValues in core/modules/node/tests/src/Functional/NodeTranslationUITest.php
Returns an array of entity field values to be tested.
ShortcutTranslationUITest::getNewEntityValues in core/modules/shortcut/tests/src/Functional/ShortcutTranslationUITest.php
Returns an array of entity field values to be tested.

... See full list

File

core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php, line 386

Class

ContentTranslationUITestBase
Tests the Content Translation UI.

Namespace

Drupal\Tests\content_translation\Functional

Code

protected function getNewEntityValues($langcode) {
  return [
    $this->fieldName => [
      [
        'value' => $this
          ->randomMachineName(16),
      ],
    ],
  ];
}