function TranslationTest::providerTestGet

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php \Drupal\Tests\Core\Annotation\TranslationTest::providerTestGet()
  2. 8.9.x core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php \Drupal\Tests\Core\Annotation\TranslationTest::providerTestGet()
  3. 11.x core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php \Drupal\Tests\Core\Annotation\TranslationTest::providerTestGet()

Provides data to
" class="local">self::testGet
().

File

core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php, line 52

Class

TranslationTest
@coversDefaultClass \Drupal\Core\Annotation\Translation[[api-linebreak]] @group Annotation

Namespace

Drupal\Tests\Core\Annotation

Code

public static function providerTestGet() {
  $data = [];
  $data[] = [
    [
      'value' => 'Foo',
    ],
    'Foo',
  ];
  $random = Random::machineName();
  $random_html_entity = '&' . $random;
  $data[] = [
    [
      'value' => 'Foo @bar @baz %qux',
      'arguments' => [
        '@bar' => $random,
        '@baz' => $random_html_entity,
        '%qux' => $random_html_entity,
      ],
      'context' => Random::machineName(),
    ],
    'Foo ' . $random . ' &amp;' . $random . ' <em class="placeholder">&amp;' . $random . '</em>',
  ];
  return $data;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.