You are here

protected function LocaleStringTest::buildSourceString in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/locale/tests/src/Kernel/LocaleStringTest.php \Drupal\Tests\locale\Kernel\LocaleStringTest::buildSourceString()
  2. 10 core/modules/locale/tests/src/Kernel/LocaleStringTest.php \Drupal\Tests\locale\Kernel\LocaleStringTest::buildSourceString()

Creates random source string object.

Parameters

array $values: The values array.

Return value

\Drupal\locale\StringInterface A locale string.

1 call to LocaleStringTest::buildSourceString()
LocaleStringTest::testStringCrudApi in core/modules/locale/tests/src/Kernel/LocaleStringTest.php
Test CRUD API.

File

core/modules/locale/tests/src/Kernel/LocaleStringTest.php, line 188

Class

LocaleStringTest
Tests the locale string storage, string objects and data API.

Namespace

Drupal\Tests\locale\Kernel

Code

protected function buildSourceString(array $values = []) {
  return $this->storage
    ->createString($values += [
    'source' => $this
      ->randomMachineName(100),
    'context' => $this
      ->randomMachineName(20),
  ]);
}